nvim 0.12 wip

This commit is contained in:
2026-01-06 16:22:02 +01:00
parent 719014ab3d
commit 98707aa239
27 changed files with 989 additions and 371 deletions

View File

@@ -0,0 +1,15 @@
return {
cmd = { "lua-language-server" },
filetypes = { "lua" },
root_markers = {
".luarc.json", ".luarc.jsonc", ".luacheckrc",
".stylua.toml", "stylua.toml", "selene.toml",
"selene.yml", ".git"
},
settings = {
Lua = {
runtime = { version = "LuaJIT" }, -- Neovim uses LuaJIT
diagnostics = { globals = { "vim" } }, -- Recognize 'vim' global
},
},
}