mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 11:02:37 +00:00 
			
		
		
		
	 a7e0542fd0
			
		
	
	
	
	
	a7e0542fd0* neorg: init * neorg: setupOpts work * neorg: disable by default * neorg: added changelog entry * neorg: setupOpts setup correctly * neorg: sane default for setupOpts * neorg: changed description and removed reduntant treesitter activation * neorg: added vim.treesitter.enable * neorg: fixing capitalisation * neorg: adding descriptions * neorg: formatting * neorg: added newline at the end of docs
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   config,
 | |
|   lib,
 | |
|   pkgs,
 | |
|   ...
 | |
| }: let
 | |
|   inherit (lib.options) mkEnableOption mkOption;
 | |
|   inherit (lib.types) submodule listOf str;
 | |
|   inherit (lib.nvim.types) mkGrammarOption mkPluginSetupOption;
 | |
| in {
 | |
|   options.vim.notes.neorg = {
 | |
|     enable = mkEnableOption ''
 | |
|       Neorg: An intuitive note-taking and organization tool with a structured nested syntax.
 | |
|     '';
 | |
| 
 | |
|     setupOpts = mkPluginSetupOption "Neorg" {
 | |
|       load = {
 | |
|         "core.defaults" = mkOption {
 | |
|           default = {};
 | |
|           description = ''
 | |
|             all of the most important modules that any user would want to have a "just works" experience
 | |
|           '';
 | |
| 
 | |
|           type = submodule {
 | |
|             options = {
 | |
|               enable = mkEnableOption ''
 | |
|                 all of the most important modules that any user would want to have a "just works" experience
 | |
|               '';
 | |
|               config = {
 | |
|                 disable = mkOption {
 | |
|                   description = ''
 | |
|                     list of modules from to be disabled from core.defaults
 | |
|                   '';
 | |
|                   type = listOf str;
 | |
|                   default = [];
 | |
|                   example = ["core.autocommands" "core.itero"];
 | |
|                 };
 | |
|               };
 | |
|             };
 | |
|           };
 | |
|         };
 | |
|       };
 | |
|     };
 | |
| 
 | |
|     treesitter = {
 | |
|       enable = mkEnableOption "Neorg treesitter" // {default = config.vim.languages.enableTreesitter;};
 | |
|       norgPackage = mkGrammarOption pkgs "norg";
 | |
|     };
 | |
|   };
 | |
| }
 |