(neovim) switch to own configuration

This commit is contained in:
Bartek Stalewski 2025-06-28 14:33:33 +02:00
parent 957ec52ca8
commit 977453fa05
No known key found for this signature in database
51 changed files with 1145 additions and 358 deletions

View file

@ -0,0 +1,20 @@
return {
cmd = { "lua-language-server" },
filetypes = { "lua" },
settings = {
Lua = {
diagnostics = {
globals = {
"vim",
"Snacks",
},
},
},
},
capabilities = vim.tbl_deep_extend("force", {}, vim.lsp.protocol.make_client_capabilities(), {
fileOperations = {
didRename = true,
willRename = true,
},
}),
}