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

19 lines
No EOL
322 B
Nix

{ ... }:
{
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;
};
};
}