feat: switch to native 0.11 LSP, remove obsolete things
This commit is contained in:
parent
23fe78acec
commit
e2d27c98c1
24 changed files with 311 additions and 475 deletions
14
lsp/lua.lua
Normal file
14
lsp/lua.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
---@type vim.lsp.Config
|
||||
return {
|
||||
cmd = { "lua-language-server" },
|
||||
filetypes = { "lua" },
|
||||
root_markers = { ".luarc.json", ".luarc.jsonc" },
|
||||
telemetry = { enabled = false },
|
||||
settings = {
|
||||
Lua = {
|
||||
runtime = {
|
||||
version = "LuaJIT",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue