nichts/modules/programs/editors/nvf/plugins/settings/visuals.nix
2024-08-22 22:53:35 +02:00

28 lines
547 B
Nix

_: {
programs.neovim-flake.settings.vim = {
visuals = {
enable = true;
nvimWebDevicons.enable = true;
cellularAutomaton.enable = true;
highlight-undo.enable = true;
indentBlankline.enable = true;
cursorline = {
enable = false;
lineTimeout = 0;
};
fidget-nvim = {
enable = true;
setupOpts = {
notification.window = {
winblend = 0;
border = "none";
render_limit = 7;
};
};
};
};
};
}