lazyvim/lua/lazyvim/plugins/extras/lang/nix.lua
2025-07-11 17:20:14 -03:00

36 lines
557 B
Lua

return {
recommended = {
ft = "nix",
root = "flake.nix",
},
{
"nvim-treesitter/nvim-treesitter",
opts = { ensure_installed = { "nix" } },
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
nil_ls = {},
},
},
},
{
"stevearc/conform.nvim",
optional = true,
opts = {
formatters_by_ft = {
nix = { "nixfmt" },
},
},
},
{
"mfussenegger/nvim-lint",
optional = true,
opts = {
linters_by_ft = {
nix = { "statix" },
},
},
},
}