* Marcelo Chiapparini <[EMAIL PROTECTED]>, 20010312 01:16 +0100: [...] > I am running gvim 5.6. I want to change the dafault colors for the > foreground and background. I can do that at the command line in gvim > typping > > :hi Normal guifg=black guibg=grey > > But I have to type this each time I run gvim. For sure there is a way [...]
Put the following into your /etc/gvimrc resp. ~/.gvimrc: autocmd GUIEnter * highlight Normal guifg=black autocmd GUIEnter * highlight Normal guibg=grey Andre Berger [EMAIL PROTECTED]

