aboutsummaryrefslogtreecommitdiff
path: root/modules/neovim/nvim/lua/config/lsp/lua_ls.lua
blob: 5e0875a9d5f6181aa15b57ed98eff67809085246 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
return {
  cmd = { "lua-language-server" },
  filetypes = { "lua" },
  root_dir = { 
    '.luarc.json',
    '.luarc.jsonc',
    '.luacheckrc',
    '.stylua.toml',
    'stylua.toml',
    'selene.toml',
    'selene.yml',
    '.git',
  },
  single_file_support = true,
}