vim/vimrc-skel

23 lines
329 B
Plaintext
Raw Permalink Normal View History

if v:lang =~ "utf8$" || v:lang =~ "UTF-8$"
set fileencodings=utf-8,latin1
endif
set showmode
set showcmd
set nocompatible
set backspace=2
set history=50
set ruler
syntax on
if &t_Co > 2 || has("gui_running")
syntax on
set hlsearch
endif
if &term=="xterm"
set t_Co=8
set t_Sb=[4%dm
set t_Sf=[3%dm
endif