mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01: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.options")
|
||||||
require("user.keymaps")
|
require("user.keymaps")
|
||||||
require("user.plugins")
|
require("user.plugins")
|
||||||
require("user.autocmds")
|
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 {
|
return {
|
||||||
'Saghen/blink.cmp'
|
'Saghen/blink.cmp',
|
||||||
|
enabled = false,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,7 @@
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"hrsh7th/nvim-cmp",
|
"hrsh7th/nvim-cmp",
|
||||||
|
enabled = false, -- last release is way too old
|
||||||
version = false, -- last release is way too old
|
version = false, -- last release is way too old
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
|
|
||||||
|
|
@ -41,6 +41,7 @@ end
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
|
enabled = false,
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"saghen/blink.cmp",
|
"saghen/blink.cmp",
|
||||||
{ "williamboman/mason.nvim", build = ":MasonUpdate", config = true },
|
{ "williamboman/mason.nvim", build = ":MasonUpdate", config = true },
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue