neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

.luarc.json (496B)


      1 {
      2  "$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
      3  "runtime": {
      4    "version": "LuaJIT"
      5  },
      6  "workspace": {
      7    "library": [
      8      "../runtime/lua",
      9      "${3rd}/luv/library"
     10    ],
     11    "checkThirdParty": "Disable"
     12  },
     13  "diagnostics": {
     14    "groupFileStatus": {
     15      "strict": "Opened",
     16      "strong": "Opened"
     17    },
     18    "groupSeverity": {
     19      "strong": "Warning",
     20      "strict": "Warning"
     21    },
     22    "unusedLocalExclude": [ "_*" ]
     23  }
     24 }