feat: add cellularAutomaton keybindings

This commit is contained in:
n3oney 2023-04-15 15:35:34 +02:00
commit 6719cddbfd
No known key found for this signature in database
GPG key ID: C786693DE727850E
2 changed files with 13 additions and 6 deletions

View file

@ -24,10 +24,16 @@ in {
default = false;
};
cellularAutomaton.enable = mkOption {
type = types.bool;
description = "Enable cellular automaton [cellular-automaton]";
default = false;
cellularAutomaton = {
enable = mkOption {
type = types.bool;
description = "Enable cellular automaton [cellular-automaton]";
default = false;
};
mappings = {
makeItRain = mkMappingOption "Make it rain [cellular-automaton]" "<leader>fml";
};
};
fidget-nvim = {