mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-25 07:21:00 +01:00
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' },
|
|
}
|