mirror of
https://github.com/softinio/nix-config.git
synced 2025-10-18 19:16:41 -07:00
19 lines
322 B
Nix
19 lines
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;
|
||
|
};
|
||
|
};
|
||
|
}
|