initial commit

This commit is contained in:
Ifrahim Ansari 2026-02-15 11:10:32 -05:00
commit 6491e91ec5
37 changed files with 1116 additions and 0 deletions

27
nvim/lua/lsp/lua_ls.lua Normal file
View file

@ -0,0 +1,27 @@
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",
},
},
},
}