Ich habe die folgenden .vimrc :
set nocompatible " Use vim defaults
"set ls=2 " Always show status line
set showcmd " Show incomplete commands
set scrolloff=3 " Keep 3 lines when scrolling
set ruler " Show the cursor position all the time
set title " Show title in console title bar
set hid " Change buffer without saving
set showmatch " Show matching bracets
set ts=2 " Numbers of spaces of tab character
set sw=2 " Numbers of spaces to (auto)indent
set et " Tabs are converted to spaces, use only when required
set sts=2 " Soft tab stop
set smartindent " Smart indent
set autoindent
set nocindent
set wrap
set hlsearch " Highlight searches
set incsearch " Do incremental searching
Und wenn ich vim von meinem Ubuntu 12.04-Terminal aus öffne, sehe ich die Farben des Schemas, aber der Hintergrund ist der gleiche, mit dem ich das Terminal öffne. Ich würde sagen, der Hintergrund sollte sich ändern, aber ich weiß nicht warum.
Irgendeine Hilfe bitte?
hi Normal ctermbg=something
? Welchen Befehl zum Laden des Farbschemas? Was ist die Ausgabe von $ echo $TERM
?
colorscheme
in seiner .vimrc
. Warum soll das passieren?