mirror of
https://github.com/softinio/nix-config.git
synced 2025-10-19 11:26:40 -07:00
19 lines
No EOL
322 B
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;
|
|
};
|
|
};
|
|
} |