mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 11:02:37 +00:00 
			
		
		
		
	feat: add cellularAutomaton keybindings
This commit is contained in:
		
					parent
					
						
							
								e21096203a
							
						
					
				
			
			
				commit
				
					
						6719cddbfd
					
				
			
		
					 2 changed files with 13 additions and 6 deletions
				
			
		|  | @ -67,6 +67,9 @@ in { | |||
| 
 | ||||
|     (mkIf cfg.cellularAutomaton.enable { | ||||
|       vim.startPlugins = ["cellular-automaton"]; | ||||
| 
 | ||||
|       vim.maps.normal = mkBinding cfg.cellularAutomaton.mappings.makeItRain "<cmd>CellularAutomaton make_it_rain<CR>" "Make it rain"; | ||||
| 
 | ||||
|       vim.luaConfigRC.cellularAUtomaton = nvim.dag.entryAnywhere '' | ||||
|         local config = { | ||||
|               fps = 50, | ||||
|  | @ -90,8 +93,6 @@ in { | |||
|             end | ||||
| 
 | ||||
|             require("cellular-automaton").register_animation(config) | ||||
| 
 | ||||
|             vim.keymap.set("n", "<leader>fml", "<cmd>CellularAutomaton make_it_rain<CR>") | ||||
|       ''; | ||||
|     }) | ||||
| 
 | ||||
|  |  | |||
|  | @ -24,12 +24,18 @@ in { | |||
|       default = false; | ||||
|     }; | ||||
| 
 | ||||
|     cellularAutomaton.enable = mkOption { | ||||
|     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 = { | ||||
|       enable = mkOption { | ||||
|         type = types.bool; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 n3oney
				n3oney