aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA Farzat <a@farzat.xyz>2024-10-02 00:38:35 +0900
committerA Farzat <a@farzat.xyz>2024-10-02 00:39:03 +0900
commit4136cd832f3b87dd260aec6ef2a102325fa18151 (patch)
tree8dd23ce358b5d09b5bf822aa3ea1531cecfcafb8
parent8609c77b9c2360153436159d75c815486e463d24 (diff)
downloadnvim-4136cd832f3b87dd260aec6ef2a102325fa18151.tar.gz
nvim-4136cd832f3b87dd260aec6ef2a102325fa18151.zip
Add lua ls config for this repository
-rw-r--r--.luarc.jsonc15
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": []
+ }
+}