syntax highlighting - Change font color for comments in vim -


i'd change default font color comments dark blue yellow color. difficult read on black background. advise me how change 1 color? i'm satisfied other colors.

i'm using xfce4-terminal (not gvim gui).

so far, have done settings in ~/.profile file according this link follows

if [ -e /usr/share/terminfo/x/xterm-256color ];         export term='xterm-256color' else         export term='xterm-color' fi 

and

set t_co=256 

in ~/.vimrc

thank you

:hi comment guifg=#abcdef 

pick color! if using color terminal, replace guifg=#abcdef ctermfg=n n being color number.

also type :help :hi more information.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -