123456789101112131415161718192021222324252627282930 |
- set showcmd
- set showmatch
- set incsearch
- set autowrite
- set nocompatible
- set backspace=indent,eol,start
- set autoindent
- set linebreak
- set textwidth=0
- set ruler
- set backupskip+=/etc/crontabs.*
- if filereadable(expand("$VIMRUNTIME/syntax/synload.vim"))
- syntax on
- endif
- if has("syntax") && &term =~ "xterm"
- set t_Co=8
- if has("terminfo")
- set t_Sf=<Esc>[3%p1%dm
- set t_Sb=<Esc>[4%p1%dm
- else
- set t_Sf=<Esc>[3%dm
- set t_Sb=<Esc>[4%dm
- endif
- endif
|