mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 19:12:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			511 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			511 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {lib, ...}: let
 | |
|   inherit (lib.modules) mkRemovedOptionModule;
 | |
| in {
 | |
|   imports = [
 | |
|     (mkRemovedOptionModule ["vim" "visuals" "enable"] ''
 | |
|       As top-level toggles are being deprecated, you are encouraged to handle plugin
 | |
|       toggles under individual options.
 | |
|     '')
 | |
| 
 | |
|     ./cellular-automaton
 | |
|     ./cinnamon-nvim
 | |
|     ./fidget-nvim
 | |
|     ./highlight-undo
 | |
|     ./indent-blankline
 | |
|     ./nvim-cursorline
 | |
|     ./nvim-scrollbar
 | |
|     ./nvim-web-devicons
 | |
|     ./rainbow-delimiters
 | |
|     ./tiny-devicons-auto-colors
 | |
|   ];
 | |
| }
 | 
