feat: add nvim settings (#11)

This commit is contained in:
Damian D'Souza
2026-07-14 23:43:47 -04:00
committed by GitHub
parent cda4f06bd7
commit 8ab6eef6eb
2 changed files with 21 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
local root_dir = vim.fn.getcwd()
return {
cmd = {
"luau-lsp",
"lsp",
"--definitions:@noctalia=" .. root_dir .. "/noctalia.d.luau",
},
settings = {
["luau-lsp"] = {
ignoreGlobs = { "**/*.d.luau" },
platform = {
type = "standard",
},
sourcemap = {
enabled = false,
},
},
},
}