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

30 lines
583 B
Nix
Raw Normal View History

2024-07-14 13:31:28 +02:00
_: {
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;
2024-07-14 13:31:28 +02:00
cellularAutomaton.enable = true;
2024-07-06 15:15:37 +02:00
highlight-undo.enable = true;
2024-07-20 12:08:25 +02:00
indentBlankline.enable = true;
2024-07-06 15:15:37 +02:00
cursorline = {
enable = true;
lineTimeout = 0;
};
fidget-nvim = {
enable = true;
setupOpts = {
notification.window = {
winblend = 0;
border = "none";
};
};
};
};
};
}