mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
Towards better lsp
Disable plugins: - blink-cmp - cmp - lsp
This commit is contained in:
parent
e627cf7d85
commit
e47f43226c
5 changed files with 10 additions and 1 deletions
1
init.lua
1
init.lua
|
|
@ -1,4 +1,5 @@
|
|||
require("user.options")
|
||||
require("user.options")
|
||||
require("user.keymaps")
|
||||
require("user.plugins")
|
||||
require("user.autocmds")
|
||||
|
|
|
|||
5
lsp/ruby.lua
Normal file
5
lsp/ruby.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
return {
|
||||
cmd = { 'ruby-lsp' },
|
||||
root_markers = { '.git', 'Gemfile' },
|
||||
filetypes = { 'Gemfile', 'ruby', 'rb', 'eruby', 'rake', 'thor', 'watchr' },
|
||||
}
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
return {
|
||||
'Saghen/blink.cmp'
|
||||
'Saghen/blink.cmp',
|
||||
enabled = false,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@
|
|||
return {
|
||||
{
|
||||
"hrsh7th/nvim-cmp",
|
||||
enabled = false, -- last release is way too old
|
||||
version = false, -- last release is way too old
|
||||
event = "InsertEnter",
|
||||
dependencies = {
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ end
|
|||
return {
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
enabled = false,
|
||||
dependencies = {
|
||||
"saghen/blink.cmp",
|
||||
{ "williamboman/mason.nvim", build = ":MasonUpdate", config = true },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue