Hua Yanghao wrote:
> The same color scheme for GUI vim & console vim looks quite 
> different, and I found different color scheme best suited for 
> each of them. Is it possible to set different color scheme 
> for GUI and Console VIM?

In your vimrc, you can put code like the following:

if has('gui_running')
  set guioptions-=T  " no toolbar
  colorscheme elflord
  hi Todo guifg=#40ffff guibg=#606060
  set lines=50 columns=96 linespace=0
else
  " something for console Vim
endif

John


--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to