私は自分の.vimrcを学び、書き始め、次のような短い.vimrcファイルを使い始めました。
1 set number
2
3 highlight GoComment xtermfg=blue
4
5 syntax on
しかし、それを得ようとすると、次のような結果が出ます。
Error detected while processing /home/matt/.vimrc:
line 3:
E423: Illegal argument: xtermfg=blue
Press ENTER or type command to continue
また:
Command 'highlight' not found, but can be installed with:
sudo apt install highlight
syntax: command not found
私が間違っていることを知っている人はいますか?ご了承ください。私は以前に.vimrcファイルを自分で作成したことがありません。
答え1
.vimrc
ファイルの3行目おそらくそうすべきでしょう:
highlight GoComment ctermfg=blue
あなたは選ぶことができますterm
(一般端末)、cterm
(xtermを含むカラー端末)、およびgui
。
最後の画面ダンプ(「'highlight'コマンドが見つかりません...」)はvimコンテキストでは意味がありません。 vimrcファイルをシェルスクリプトのように実行したいようです。