1

I want change this boring grey of my foreground but don't know the commands and the syntax. I am using a theme that i took and customized my own from http://bytefluent.com/vivify/ The theme is: adrian_modified

Image: the text editor running 'adrian_modified'

Thanks in advance.

ovrwngtvity
  • 4,261
  • 3
  • 15
  • 20
  • 1
    possible duplicate of [How do I change the unused background color in vim?](http://stackoverflow.com/questions/17818652/how-do-i-change-the-unused-background-color-in-vim) – FDinoff Aug 13 '13 at 19:29
  • Also duplicate of http://stackoverflow.com/questions/18094481/changing-background-colors – glts Aug 13 '13 at 21:07

1 Answers1

3

:highlight NonText guifg=#ff0000 guibg=#00ff00

Alter the colors to your liking. :)

mhinz
  • 3,291
  • 20
  • 20
  • For anyone using a terminal-based vim: ctermfg/ctermbg. You can also used named colours; see `help:cterm-colors`. There are also xtermfg/xtermfg and `xterm-colors` if you're in that environment. – Edward Aug 13 '13 at 19:34
  • I typed at Normal mode: `:highlight NonText guifg=#black guibg=black`and it changes perfectly at the moment with my adrian_modified.vim theme. But i put at the vimrc the same command without : but doesn't work when i restart GVim. What i need to do? – ovrwngtvity Aug 13 '13 at 22:44
  • 1
    @AndréLuiz put the command in your vimrc after the colorscheme command. Or edit the colorscheme – FDinoff Aug 13 '13 at 22:45