vim 配置备份

set nocompatible                                  " 去掉有关vi一致性模式,避免以前版本的bug和局限 
set nu                                            " 显示行号
filetype on                                       " 检测文件的类型
syntax on                                         " 语法高亮度显示
set autoindent                                    " vim使用自动对齐,也就是把当前行的对齐格式应用到下一行(自动缩进)
set smartindent                                   " 依据上面的对齐格式,智能的选择对齐方式
set tabstop=4                                     " 设置tab键为4个空格
set shiftwidth =4                                 " 设置当行之间交错时使用4个空格     
set ai!                                           " 设置自动缩进
set showmatch                                     " 设置匹配模式,类似当输入一个左括号时会匹配相应的右括号
set incsearch                                     " 在程序中查询一单词,自动匹配单词的位置;如查询desk单词,当输到/d时,会自动找到第一个d开头的单词,当输入到/de时,会自动找到第一个以ds开头的单词,以此类推,进行查找;当找到要匹配的单词时,别忘记回车 
set ruler                                         " 在编辑过程中,在右下角显示光标位置的状态行     
set backspace=2                                   " 设置退格键可用
set cursorline                                    " 为操作的一行添加下划线
set mouse=a                                       " 启用鼠标
set nobackup                                      " 设置不备份

set encoding=utf-8                                " 设置默认字符编码

" Source a global configuration file if available
if filereadable("/etc/vim/vimrc.local")
    source /etc/vim/vimrc.local
endif

" 设置python文件模板
if filereadable("/home/.vim/template/python")
    autocmd BufNewFile *.py 0 read /home/.vim/template/python
endif

" 设置shell文件模板
if filereadable("/home/.vim/template/shell")
    autocmd BufNewFile *.sh 0 read /home/.vim/template/shell
endif

" 设置jsp文件模板
if filereadable("/home/.vim/template/jsp")
    autocmd BufNewFile *.jsp 0 read /home/.vim/template/jsp
endif

" 设置html文件模板
if filereadable("/home/.vim/template/html")
    autocmd BufNewFile *.html 0 read /home/.vim/template/html
endif


你可能感兴趣的:(vim)