mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 19:12:38 +00:00 
			
		
		
		
	feat: add comment.nvim keybindings
This commit is contained in:
		
					parent
					
						
							
								1439d0d033
							
						
					
				
			
			
				commit
				
					
						812d04ee36
					
				
			
		
					 2 changed files with 44 additions and 6 deletions
				
			
		|  | @ -1,11 +1,18 @@ | ||||||
| { | {lib, ...}: | ||||||
|   config, |  | ||||||
|   lib, |  | ||||||
|   ... |  | ||||||
| }: |  | ||||||
| with lib; | with lib; | ||||||
| with builtins; { | with builtins; { | ||||||
|   options.vim.comments.comment-nvim = { |   options.vim.comments.comment-nvim = { | ||||||
|     enable = mkEnableOption "Enable comment-nvim"; |     enable = mkEnableOption "Enable comment-nvim"; | ||||||
|  | 
 | ||||||
|  |     mappings = { | ||||||
|  |       toggleCurrentLine = mkMappingOption "Toggle current line comment" "gcc"; | ||||||
|  |       toggleCurrentBlock = mkMappingOption "Toggle current block comment" "gbc"; | ||||||
|  | 
 | ||||||
|  |       toggleOpLeaderLine = mkMappingOption "Toggle line comment" "gc"; | ||||||
|  |       toggleOpLeaderBlock = mkMappingOption "Toggle block comment" "gb"; | ||||||
|  | 
 | ||||||
|  |       toggleSelectedLine = mkMappingOption "Toggle selected comment" "gc"; | ||||||
|  |       toggleSelectedBlock = mkMappingOption "Toggle selected block" "gb"; | ||||||
|  |     }; | ||||||
|   }; |   }; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -6,14 +6,45 @@ | ||||||
| with lib; | with lib; | ||||||
| with builtins; let | with builtins; let | ||||||
|   cfg = config.vim.comments.comment-nvim; |   cfg = config.vim.comments.comment-nvim; | ||||||
|  |   self = import ./comment-nvim.nix { | ||||||
|  |     inherit lib; | ||||||
|  |   }; | ||||||
|  |   mappings = self.options.vim.comments.comment-nvim.mappings; | ||||||
| in { | in { | ||||||
|   config = mkIf cfg.enable { |   config = mkIf cfg.enable { | ||||||
|     vim.startPlugins = [ |     vim.startPlugins = [ | ||||||
|       "comment-nvim" |       "comment-nvim" | ||||||
|     ]; |     ]; | ||||||
| 
 | 
 | ||||||
|  |     vim.maps.normal = mkMerge [ | ||||||
|  |       (mkBinding cfg.mappings.toggleOpLeaderLine "<Plug>(comment_toggle_linewise)" mappings.toggleOpLeaderLine.description) | ||||||
|  |       (mkBinding cfg.mappings.toggleOpLeaderBlock "<Plug>(comment_toggle_blockwise)" mappings.toggleOpLeaderBlock.description) | ||||||
|  | 
 | ||||||
|  |       (mkExprBinding cfg.mappings.toggleCurrentLine '' | ||||||
|  |           function() | ||||||
|  |             return vim.api.nvim_get_vvar('count') == 0 and '<Plug>(comment_toggle_linewise_current)' | ||||||
|  |                     or '<Plug>(comment_toggle_linewise_count)' | ||||||
|  |           end | ||||||
|  |         '' | ||||||
|  |         mappings.toggleCurrentLine.description) | ||||||
|  |       (mkExprBinding cfg.mappings.toggleCurrentBlock '' | ||||||
|  |           function() | ||||||
|  |             return vim.api.nvim_get_vvar('count') == 0 and '<Plug>(comment_toggle_blockwise_current)' | ||||||
|  |                     or '<Plug>(comment_toggle_blockwise_count)' | ||||||
|  |           end | ||||||
|  |         '' | ||||||
|  |         mappings.toggleCurrentBlock.description) | ||||||
|  |     ]; | ||||||
|  | 
 | ||||||
|  |     vim.maps.visualOnly = mkMerge [ | ||||||
|  |       (mkBinding cfg.mappings.toggleSelectedLine "<Plug>(comment_toggle_linewise_visual)" mappings.toggleSelectedLine.description) | ||||||
|  |       (mkBinding cfg.mappings.toggleSelectedBlock "<Plug>(comment_toggle_blockwise_visual)" mappings.toggleSelectedBlock.description) | ||||||
|  |     ]; | ||||||
|  | 
 | ||||||
|     vim.luaConfigRC.comment-nvim = nvim.dag.entryAnywhere '' |     vim.luaConfigRC.comment-nvim = nvim.dag.entryAnywhere '' | ||||||
|       require('Comment').setup() |       require('Comment').setup({ | ||||||
|  |         mappings = { basic = false, extra = false, }, | ||||||
|  |       }) | ||||||
|     ''; |     ''; | ||||||
|   }; |   }; | ||||||
| } | } | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 n3oney
				n3oney