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

29 lines
547 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-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 = {
2024-08-22 22:53:35 +02:00
enable = false;
2024-07-06 15:15:37 +02:00
lineTimeout = 0;
};
fidget-nvim = {
enable = true;
setupOpts = {
notification.window = {
winblend = 0;
border = "none";
2024-08-22 22:53:35 +02:00
render_limit = 7;
2024-07-06 15:15:37 +02:00
};
};
};
};
};
}