Add starter nvim config

This commit is contained in:
2024-05-24 21:35:17 -05:00
parent 12c85b8672
commit d106beaa5c
11 changed files with 298 additions and 0 deletions

13
.config/nvim/.luarc.json Normal file
View File

@@ -0,0 +1,13 @@
{
"runtime.version": "LuaJIT",
"runtime.path": [
"lua/?.lua",
"lua/?/init.lua"
],
"diagnostics.globals": ["vim"],
"workspace.checkThirdParty": false,
"workspace.library": [
"$VIMRUNTIME",
"./lua"
]
}