我運行Debian 7.8服務器,安裝了我能想到的所有vim軟件包。Vim不顯示顏色
我的.profile文件包含:
if [ -e /usr/share/terminfo/x/xterm-256color ]; then
export TERM='xterm-256color'
else
export TERM='xterm-color'
fi
我的.vimrc包含:
set t_Co=256
set t_AB=^[[48;5;%dm
set t_AF=^[[38;5;%dm
然而,當我打開一個隨機的cpp文件,並設置:在我的語法沒有得到任何顏色,但是這個:
^[[38;5;14m//#include <unistd.h>
^[[38;5;81m#include ^[[38;5;13m"bouchonWifi.h"
^[[38;5;81m#include ^[[38;5;13m"string.h"
我已經檢查過,我的終端可以顯示顏色,這要歸功於perl腳本,它顯示所有256列ors,ls是有色的...
如何讓顏色在vim中正確顯示?
似乎都與t_AF有關,嘗試評論t_AB和t_AF線,看看會發生什麼 – vivoconunxino
不改變任何事情 – Percee
確保'^ ['輸入爲'按Ctrl -V [' –
tivn