summaryrefslogtreecommitdiff
path: root/start/lspconfig-0.1.8/lua/lspconfig/server_configurations/statix.lua
blob: 050c0b50ea3d2b0e0c46d6df8385ddecc321a506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
local util = require 'lspconfig.util'

return {
  default_config = {
    cmd = { 'statix' },
    filetypes = { 'nix' },
    single_file_support = true,
    root_dir = util.root_pattern('flake.nix', '.git'),
  },
  docs = {
    description = [[
https://github.com/nerdypepper/statix

lints and suggestions for the nix programming language
    ]],
    default_config = {
      root_dir = [[root_pattern("flake.nix", ".git")]],
    },
  },
}