Neovim-from-scratch icon indicating copy to clipboard operation
Neovim-from-scratch copied to clipboard

remove color scheme

Open pedromaironi opened this issue 2 years ago • 2 comments

How i can change this color? image

pedromaironi avatar Jun 09 '22 20:06 pedromaironi

Blue color to white or anyelse

pedromaironi avatar Jun 09 '22 20:06 pedromaironi

That is known as the gutter or signs column. You can change the highlight colour like so: vim.cmd [[highlight ColorColumn guibg=white]] For other colours :help gui-colors gives

							*gui-colors*
	Suggested color names (these are available on most systems):
	    Red		LightRed	DarkRed
	    Green	LightGreen	DarkGreen	SeaGreen
	    Blue	LightBlue	DarkBlue	SlateBlue
	    Cyan	LightCyan	DarkCyan
	    Magenta	LightMagenta	DarkMagenta
	    Yellow	LightYellow	Brown		DarkYellow
	    Gray	LightGray	DarkGray
	    Black	White
	    Orange	Purple		Violet

	You can also specify a color by its RGB (red, green, blue) values.
	The format is "#rrggbb", where
		"rr"	is the Red value
		"gg"	is the Green value
		"bb"	is the Blue value
	All values are hexadecimal, range from "00" to "ff".  Examples: >
  :highlight Comment guifg=#11f0c3 guibg=#ff00ff

Sources: Neovim docs https://stackoverflow.com/a/15278468/6946577 https://www.reddit.com/r/neovim/comments/me35u9/comment/gsd5x20/

ljden avatar Jul 10 '22 11:07 ljden

Thank u man, I appreciate this, sorry for answer too late.

pedromaironi avatar Oct 18 '22 02:10 pedromaironi