feat(nvim): add profile and gx

This commit is contained in:
Oliver
2025-10-24 16:21:22 +02:00
parent 54bf8fdd78
commit e55dd790eb
3 changed files with 142 additions and 0 deletions

13
nvim/lsp/luals.lua Normal file
View File

@@ -0,0 +1,13 @@
return {
cmd = { "lua-language-server" },
filetypes = { "lua" },
root_markers = { ".luarc.json", ".luarc.jsonc" },
settings = {
Lua = {
runtime = {
version = "LuaJIT",
},
signatureHelp = { enabled = true },
},
},
}