nix-config/programs/nixvim/plugins/lsp/formatting.nix

19 lines
322 B
Nix
Raw Normal View History

2025-10-05 15:47:32 -07:00
{ ... }:
{
programs.nixvim = {
# Diagnostics display
diagnostic.settings.virtual_text = true;
plugins = {
# Auto-format on save
lsp-format = {
enable = true;
lspServersToEnable = "all";
};
# Sane defaults for all servers
lspconfig.enable = true;
};
};
}