13 lines
264 B
Lua
13 lines
264 B
Lua
|
|
---@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' },
|
||
|
|
}
|