my vim for linux configuration and plugin list

export TERM=linux

plugin list:

a.vim 
bufexplorer.vim 
mark.vim 
project.vim 
taglist.vim 
word_complete.vim
grep.vim
supertab.vim

configuration:

"==============
" default
"==============
set nocompatible

"Set to auto read when a file is changed from the outside
set autoread

"Encoding
if has("multi_byte")
    set termencoding=chinese
    set encoding=utf-8
    set fileencodings=ucs-bom,utf-8,chinese
endif

"==============
" tab
"==============
set shiftwidth=4
set sts=4
set tabstop=4
set expandtab

"==============
" backup
"==============
set nobackup
set nowritebackup

"==============
" smart code
"==============
if has("eval")
filetype plugin on
filetype indent on
endif
set ignorecase smartcase
set cindent
syntax on

"==============
" appearance
"==============
set nu

"==============
" plugins
"==============
:autocmd BufEnter * call DoWordComplete()

set tags=tags;
set autochdir
let Tlist_Show_One_File=1
let Tlist_Exit_OnlyWindow=1

你可能感兴趣的:(linux,vim)