about summary refs log tree commit diff
path: root/.config/nvim/.luarc.json
diff options
context:
space:
mode:
authorvenomade <venomade@venomade.com>2026-01-18 16:07:54 +0000
committervenomade <venomade@venomade.com>2026-01-18 16:07:54 +0000
commit8d688d1107c46b6dfdcaf02fa5c9c4c8a4640e65 (patch)
tree76edfeb78094eb8491b1f32a2acd45b6ba95ffa2 /.config/nvim/.luarc.json
parentedcf5dd381c26274a939f4e703539b15c0058e99 (diff)
KDE & Emacs
Diffstat (limited to '.config/nvim/.luarc.json')
-rw-r--r--.config/nvim/.luarc.json33
1 files changed, 33 insertions, 0 deletions
diff --git a/.config/nvim/.luarc.json b/.config/nvim/.luarc.json
new file mode 100644
index 0000000..c5a6ffc
--- /dev/null
+++ b/.config/nvim/.luarc.json
@@ -0,0 +1,33 @@
+{
+    "$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
+    "Lua.runtime.version": "LuaJIT",
+    "Lua.runtime.path": [
+        "?.lua",
+        "?/init.lua",
+        "/Users/venomade/.luarocks/share/lua/5.4/?.lua",
+        "/Users/venomade/.luarocks/share/lua/5.4/?/init.lua",
+        "/opt/homebrew/share/lua/5.4/?.lua",
+        "/opt/homebrew/share/lua/5.4/?/init.lua",
+        "./stubs/?.lua",
+        "./stubs/?/init.lua"
+    ],
+    "Lua.workspace.library": [
+        "/Users/venomade/.luarocks/share/lua/5.4",
+        "/opt/homebrew/share/lua/5.4",
+        "./stubs"
+    ],
+    "diagnostics.globals": ["vim"],
+    "workspace.checkThirdParty": false,
+    "workspace.library": [
+        "$VIMRUNTIME"
+    ],
+    "Lua.diagnostics.enable": true,
+    "Lua.format.defaultConfig": {
+        "indent_style": "space",
+        "indent_size": "2"
+    },
+    "typeFormat.config": false,
+    "completion.callSnippet": "Replace",
+    "completion.showWord": "Disable",
+    "completion.workspaceWord": false
+}