aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/lua_ls.lua
blob: ace23292803aa65f7b808e4b1ce7408721003ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
return {
  cmd = {"lua-language-server"},
  filetypes = {"lua"},
  root_markers = {".luarc.json", ".git"},
  settings = {
    Lua = {
      runtime = {
        version = "LuaJIT",
      },
      diagnostics = {
        disable = {
          "lowercase-global",
        },
      },
    },
  },
}