feat: rename colorizer to ccc

This commit is contained in:
NotAShelf 2023-06-04 09:41:10 +03:00
commit 1cc6bb8b8a
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
10 changed files with 93 additions and 48 deletions

View 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>";
};
};
}