mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-11-10 23:45:31 +00:00
feat: rename colorizer to ccc
This commit is contained in:
parent
bd61b1375a
commit
1cc6bb8b8a
10 changed files with 93 additions and 48 deletions
13
modules/utility/ccc/ccc.nix
Normal file
13
modules/utility/ccc/ccc.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{lib, ...}:
|
||||
with lib;
|
||||
with builtins; {
|
||||
options.vim.utility.ccc = {
|
||||
enable = mkEnableOption "Enable ccc color picker for neovim";
|
||||
|
||||
mappings = {
|
||||
quit = mkMappingOption "Cancel and close the UI without replace or insert" "<Esc>";
|
||||
increase10 = mkMappingOption "Increase the value times delta of the slider" "<L>";
|
||||
decrease10 = mkMappingOption "Decrease the value times delta of the slider" "<H>";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue