34 lines
680 B
Nix
34 lines
680 B
Nix
{
|
|
programs.neovim-flake.settings.vim = {
|
|
visuals = {
|
|
enable = true;
|
|
nvimWebDevicons.enable = true;
|
|
scrollBar.enable = true;
|
|
smoothScroll.enable = false;
|
|
cellularAutomaton.enable = false;
|
|
highlight-undo.enable = true;
|
|
|
|
indentBlankline = {
|
|
enable = true;
|
|
fillChar = null;
|
|
eolChar = null;
|
|
scope.enabled = true;
|
|
};
|
|
|
|
cursorline = {
|
|
enable = true;
|
|
lineTimeout = 0;
|
|
};
|
|
|
|
fidget-nvim = {
|
|
enable = true;
|
|
setupOpts = {
|
|
notification.window = {
|
|
winblend = 0;
|
|
border = "none";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|