NixOS/nvim/lua/lsp/lua_ls.lua
2026-02-15 11:10:32 -05:00

27 lines
441 B
Lua

return {
cmd = { "lua-language-server" },
filetypes = { "lua" },
root_markers = {
".lua",
".emmyrc.json",
".luarc.json",
".luarc.jsonc",
".luacheckrc",
".stylua.toml",
"stylua.toml",
"selene.toml",
"selene.yml",
".git",
},
settings = {
Lua = {
codeLens = {
enable = true,
},
hint = {
enable = true,
semicolon = "Disable",
},
},
},
}