mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-11-04 04:32:21 +00:00 
			
		
		
		
	Compare commits
	
		
			9 commits
		
	
	
		
			
				a9503c8ef8
			
			...
			
				47735a6be6
			
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
							
							
								
							
							
	
	
	47735a6be6 | 
						
						
							|||
| 
							 | 
						
							
							
								
							
							
	
	
	8413b25e5e | 
						
						
							||
| 
							 | 
						
							
							
								
							
							
	
	
	2be50b2690 | 
						
						
							||
| 
							 | 
						
							
							
								
							
							
	
	
	d4b04d7aa0 | 
						
						
							||
| 
							
							
								
							
							
	
	
	3b2a37ef3d | 
						
						
							|||
| 
							 | 
						
							
							
								
							
							
	
	
	7199ee8ebf | 
						
						
							||
| 
							 | 
						
							
							
								
							
							
	
	
	733b42cc5f | 
						
						
							||
| 
							 | 
						
							
							
								
							
							
	
	
	6ec28999cb | 
						
						
							||
| 
							 | 
						
							
							
								
							
							
	
	
	06b5903b53 | 
						
						
							
					 3 changed files with 16 additions and 8 deletions
				
			
		| 
						 | 
					@ -439,3 +439,4 @@
 | 
				
			||||||
- Add [smart-splits.nvim] for navigating between Neovim windows and terminal multiplexer panes.
 | 
					- Add [smart-splits.nvim] for navigating between Neovim windows and terminal multiplexer panes.
 | 
				
			||||||
  Available at `vim.utility.smart-splits`.
 | 
					  Available at `vim.utility.smart-splits`.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- Fix lualine separator options
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -57,14 +57,21 @@
 | 
				
			||||||
      signs = mkOption {
 | 
					      signs = mkOption {
 | 
				
			||||||
        type = diagnosticType;
 | 
					        type = diagnosticType;
 | 
				
			||||||
        default = false;
 | 
					        default = false;
 | 
				
			||||||
        example = {
 | 
					        example = literalExpression ''
 | 
				
			||||||
          signs.text = {
 | 
					          signs.text = lib.generators.mkLuaInline '''
 | 
				
			||||||
            "vim.diagnostic.severity.ERROR" = " ";
 | 
					            {
 | 
				
			||||||
            "vim.diagnostic.severity.WARN" = " ";
 | 
					              [vim.diagnostic.severity.ERROR] = " ",
 | 
				
			||||||
          };
 | 
					              [vim.diagnostic.severity.WARN] = " ",
 | 
				
			||||||
        };
 | 
					            }
 | 
				
			||||||
 | 
					          ''';
 | 
				
			||||||
 | 
					        '';
 | 
				
			||||||
        description = ''
 | 
					        description = ''
 | 
				
			||||||
          Use signs for diagnostics. See {command}`:help diagnostic-signs`.
 | 
					          Use signs for diagnostics. See {command}`:help diagnostic-signs`.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					          :::{.note}
 | 
				
			||||||
 | 
					          The code presented in that example section uses Lua expressions as object keys which
 | 
				
			||||||
 | 
					          only translate well if you use `lib.generators.mkLuaInline` as in the example.
 | 
				
			||||||
 | 
					          :::
 | 
				
			||||||
        '';
 | 
					        '';
 | 
				
			||||||
      };
 | 
					      };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -63,8 +63,8 @@ in {
 | 
				
			||||||
          options = {
 | 
					          options = {
 | 
				
			||||||
            icons_enabled = mkDefault cfg.icons.enable;
 | 
					            icons_enabled = mkDefault cfg.icons.enable;
 | 
				
			||||||
            theme = mkDefault cfg.theme;
 | 
					            theme = mkDefault cfg.theme;
 | 
				
			||||||
            component_separators = mkDefault [cfg.componentSeparator.left cfg.componentSeparator.right];
 | 
					            component_separators = mkDefault cfg.componentSeparator;
 | 
				
			||||||
            section_separators = mkDefault [cfg.sectionSeparator.left cfg.sectionSeparator.right];
 | 
					            section_separators = mkDefault cfg.sectionSeparator;
 | 
				
			||||||
            globalstatus = mkDefault cfg.globalStatus;
 | 
					            globalstatus = mkDefault cfg.globalStatus;
 | 
				
			||||||
            refresh = mkDefault cfg.refresh;
 | 
					            refresh = mkDefault cfg.refresh;
 | 
				
			||||||
            always_divide_middle = mkDefault cfg.alwaysDivideMiddle;
 | 
					            always_divide_middle = mkDefault cfg.alwaysDivideMiddle;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue