mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 19:25:59 +01:00
NotAShelf
658d380232
The option visuals.smoothScroll was confusing as there can be more than one backend.
58 lines
1.4 KiB
Nix
58 lines
1.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.options) mkEnableOption mkOption;
|
|
inherit (lib.types) int bool str;
|
|
inherit (lib.nvim.binds) mkMappingOption;
|
|
|
|
cfg = config.vim.visuals;
|
|
in {
|
|
options.vim.visuals = {
|
|
enable = mkEnableOption "Visual enhancements.";
|
|
|
|
cellularAutomaton = {
|
|
enable = mkEnableOption "cellular automaton [cellular-automaton]";
|
|
|
|
mappings = {
|
|
makeItRain = mkMappingOption "Make it rain [cellular-automaton]" "<leader>fml";
|
|
};
|
|
};
|
|
|
|
highlight-undo = {
|
|
enable = mkEnableOption "highlight undo [highlight-undo]";
|
|
|
|
highlightForCount = mkOption {
|
|
type = bool;
|
|
default = true;
|
|
description = ''
|
|
Enable support for highlighting when a <count> is provided before the key
|
|
If set to false it will only highlight when the mapping is not prefixed with a <count>
|
|
'';
|
|
};
|
|
|
|
duration = mkOption {
|
|
type = int;
|
|
description = "Duration of highlight";
|
|
default = 500;
|
|
};
|
|
|
|
undo = {
|
|
hlGroup = mkOption {
|
|
type = str;
|
|
description = "Highlight group for undo";
|
|
default = "HighlightUndo";
|
|
};
|
|
};
|
|
|
|
redo = {
|
|
hlGroup = mkOption {
|
|
type = str;
|
|
description = "Highlight group for redo";
|
|
default = "HighlightUndo";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|