color schemeを変更する

問題

使用しているdarkblueのカラースキーマのタブ色を変更したい。

解決

vimrcでは、下記のようにカラースキーマを設定している。

colorscheme darkblue

実際にdarkblueのカラースキーマを修正する。
自分の環境では、下記のパス。
C:\Program Files\vim72-kaoriya-w32j\runtime\colors\darkblue.vim

次のように修正。

" アクティブでないタブの設定
hi TabLineSel guifg=white guibg=black font=MS_Gothic
" アクティブなタブの設s
hi TabLine guifg=purple guibg=blue gui=bold
hi CursorLine cterm=underline gui=underline guibg=NONE 

helpには下記のような情報がある。

       *hl-TabLine*
TabLine  tab pages line, not active tab page label
       *hl-TabLineFill*
TabLineFill tab pages line, where there are no labels
       *hl-TabLineSel*
TabLineSel tab pages line, active tab page label
       *hl-Title*

現在のカラースキーマ
http://dl.dropbox.com/u/461314/vim_color_Image%202012-02-18-000.png