Skip to content

Commit

Permalink
chore(dev): Add .luarc.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
kristijanhusak committed May 30, 2024
1 parent b96dd85 commit 96e975e
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .luarc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
"diagnostics": {
"globals": [
"vim"
]
},
"hint": {
"enable": true
},
"runtime": {
"path": [
"?.lua",
"?/init.lua"
],
"pathStrict": true,
"version": "LuaJIT"
},
"telemetry": {
"enable": false
},
"workspace": {
"checkThirdParty": "Disable",
"ignoreDir": [
".git"
],
"library": [
"./lua",
"$VIMRUNTIME/lua",
"${3rd}/luv/library",
"./tests/.deps/plugins/plenary"
]
}
}

0 comments on commit 96e975e

Please sign in to comment.