blob: 5c1ef326f8cca8b12f48b0aabf443f1e23b29261 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
---@brief
---
--- https://github.com/nerdypepper/statix
---
--- lints and suggestions for the nix programming language
---@type vim.lsp.Config
return {
  cmd = { 'statix', 'check', '--stdin' },
  filetypes = { 'nix' },
  root_markers = { 'flake.nix', '.git' },
}
  |