nichts/modules/editors/nvf/plugins/settings/visuals.nix

37 lines
753 B
Nix
Raw Normal View History

2024-07-06 15:53:16 +02:00
{config, ...}: let
inherit (config.modules.other.system) username;
in {
2024-07-06 15:15:37 +02:00
programs.neovim-flake.settings.vim = {
visuals = {
enable = true;
nvimWebDevicons.enable = true;
2024-07-07 23:45:18 +02:00
scrollBar.enable = false;
2024-07-06 15:15:37 +02:00
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";
};
};
};
};
};
}