19 lines
193 B
VimL
19 lines
193 B
VimL
if (&term == "xterm")
|
|
let &t_Co=256
|
|
let &t_AF="\e[38;5;%dm"
|
|
let &t_AB="\e[48;5;%dm"
|
|
endif
|
|
|
|
if (&compatible)
|
|
set nocompatible
|
|
endif
|
|
|
|
set bs=2
|
|
|
|
filetype plugin on
|
|
|
|
syntax on
|
|
|
|
set autoindent
|
|
|