feat: Comment out changes regarding diagnostic symbols so that only those who want to change them can do so
This commit is contained in:
		
							parent
							
								
									102b1a1c70
								
							
						
					
					
						commit
						69b8891754
					
				
							
								
								
									
										14
									
								
								init.lua
								
								
								
								
							
							
						
						
									
										14
									
								
								init.lua
								
								
								
								
							| 
						 | 
					@ -589,13 +589,13 @@ require('lazy').setup({
 | 
				
			||||||
      })
 | 
					      })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      -- Change diagnostic symbols in the sign column (gutter)
 | 
					      -- Change diagnostic symbols in the sign column (gutter)
 | 
				
			||||||
      if vim.g.have_nerd_font then
 | 
					      -- if vim.g.have_nerd_font then
 | 
				
			||||||
        local signs = { Error = '', Warn = '', Hint = '', Info = '' }
 | 
					      --   local signs = { Error = '', Warn = '', Hint = '', Info = '' }
 | 
				
			||||||
        for type, icon in pairs(signs) do
 | 
					      --   for type, icon in pairs(signs) do
 | 
				
			||||||
          local hl = 'DiagnosticSign' .. type
 | 
					      --     local hl = 'DiagnosticSign' .. type
 | 
				
			||||||
          vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
 | 
					      --     vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
 | 
				
			||||||
        end
 | 
					      --   end
 | 
				
			||||||
      end
 | 
					      -- end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      -- LSP servers and clients are able to communicate to each other what features they support.
 | 
					      -- LSP servers and clients are able to communicate to each other what features they support.
 | 
				
			||||||
      --  By default, Neovim doesn't support everything that is in the LSP specification.
 | 
					      --  By default, Neovim doesn't support everything that is in the LSP specification.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue