diff options
Diffstat (limited to '.luarc.jsonc')
-rw-r--r-- | .luarc.jsonc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.luarc.jsonc b/.luarc.jsonc new file mode 100644 index 0000000..e976381 --- /dev/null +++ b/.luarc.jsonc @@ -0,0 +1,15 @@ +// Copied from https://github.com/nvim-tree/nvim-tree.lua/blob/master/.luarc.json +{ + "$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json", + "runtime.version": "LuaJIT", + "workspace": { + "library": [ + "$VIMRUNTIME/lua/vim", + "${3rd}/luv/library" + ] + }, + "diagnostics": { + "libraryFiles": "Disable", + "globals": [] + } +} |