Towards better lsp

Disable plugins:
- blink-cmp
- cmp
- lsp
This commit is contained in:
Marcelo Jacobus 2025-11-04 14:16:37 -03:00
parent e627cf7d85
commit e47f43226c
5 changed files with 10 additions and 1 deletions

View file

@ -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
View file

@ -0,0 +1,5 @@
return {
cmd = { 'ruby-lsp' },
root_markers = { '.git', 'Gemfile' },
filetypes = { 'Gemfile', 'ruby', 'rb', 'eruby', 'rake', 'thor', 'watchr' },
}

View file

@ -1,3 +1,4 @@
return {
'Saghen/blink.cmp'
'Saghen/blink.cmp',
enabled = false,
}

View file

@ -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 = {

View file

@ -41,6 +41,7 @@ end
return {
{
"neovim/nvim-lspconfig",
enabled = false,
dependencies = {
"saghen/blink.cmp",
{ "williamboman/mason.nvim", build = ":MasonUpdate", config = true },