nixos-configs/modules/editor/vim/lua/plugins/nix.lua

40 lines
595 B
Lua
Raw Normal View History

2024-07-16 02:02:33 +02:00
return {
{
"mfussenegger/nvim-lint",
opts = {
linters_by_ft = {
nix = {
"statix",
},
},
},
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
nixd = {
settings = {
nixd = {
formatting = {
command = { "nixfmt" }
}
}
},
},
},
},
},
{
"stevearc/conform.nvim",
opts = {
2024-08-22 00:02:26 +02:00
format = {
lsp_format = "first"
},
2024-07-16 02:02:33 +02:00
formatters_by_ft = {
2024-08-22 00:02:26 +02:00
nix = { "nixfmt" },
2024-07-16 02:02:33 +02:00
},
},
},
}