mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 11:02:37 +00:00 
			
		
		
		
	feat: conditionally add org ts grammar if orgmode is enabled
This commit is contained in:
		
					parent
					
						
							
								f2e93a22c7
							
						
					
				
			
			
				commit
				
					
						1027e6d58f
					
				
			
		
					 1 changed files with 20 additions and 18 deletions
				
			
		|  | @ -29,7 +29,8 @@ in { | ||||||
| 
 | 
 | ||||||
|     grammars = mkOption { |     grammars = mkOption { | ||||||
|       type = with types; listOf package; |       type = with types; listOf package; | ||||||
|       default = with (pkgs.vimPlugins.nvim-treesitter.builtGrammars); [ |       default = with (pkgs.vimPlugins.nvim-treesitter.builtGrammars); | ||||||
|  |         [ | ||||||
|           c |           c | ||||||
|           cpp |           cpp | ||||||
|           nix |           nix | ||||||
|  | @ -46,7 +47,8 @@ in { | ||||||
|           graphql |           graphql | ||||||
|           json |           json | ||||||
|           zig |           zig | ||||||
|       ]; |         ] | ||||||
|  |         ++ (optional config.vim.notes.orgmode.enable org); # add orgmode grammar if enabled | ||||||
|       description = '' |       description = '' | ||||||
|         List of treesitter grammars to install. |         List of treesitter grammars to install. | ||||||
|         When enabling a language, its treesitter grammar is added for you. |         When enabling a language, its treesitter grammar is added for you. | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 NotAShelf
				NotAShelf