1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-07-04 07:13:40 +02:00

nvim: indent fix

This commit is contained in:
Henrik Hautakoski 2024-08-26 13:06:45 +02:00
parent 7d14948480
commit a415054cda

View file

@ -1,15 +1,15 @@
{ {
"runtime.version": "LuaJIT", "runtime.version": "LuaJIT",
"runtime.path": ["lua/?.lua", "lua/?/init.lua"], "runtime.path": ["lua/?.lua", "lua/?/init.lua"],
"diagnostics.globals": [ "diagnostics.globals": [
"vim", "vim",
"ipairs", "ipairs",
"require", "require",
"pairs", "pairs",
"type", "type",
"unpack", "unpack",
"table" "table"
], ],
"workspace.checkThirdParty": false, "workspace.checkThirdParty": false,
"workspace.library": ["$VIMRUNTIME", "./lua"] "workspace.library": ["$VIMRUNTIME", "./lua"]
} }