0

Vim カラースキームの使用に問題があります。このプラグインをダウンロードしてインストールしましたが、選択を永続的にする方法がわかりません。

方法を教えていただけますか?

ここに私の.vimrc設定ファイルの一部があります:

set nocompatible        " not compatible with the old-fashion vi mode
set bs=2                " allow backspacing over everything in insert mode
set history=50          " keep 50 lines of command line history
set ruler               " show the cursor position all the time
set autoread            " auto read when file is changed from outside
set number              " setting number always 
set showcmd             " display an incomplete command 
set background=wombat256     " or light 

選択wombat256したのですが、うまくいきません。

4

1 に答える 1

1

この行を変更します。

set background=wombat256     " or light 

colorscheme wombat256

また、ドキュメントを読む絶好の機会を逃さないでください::help 'background':help colorscheme.

于 2012-04-21T20:00:26.017 に答える