vimrc

augroup filetype
autocmd! BufRead,BufNewFile BUILD set filetype=blade
augroup end
colo desert

set number
set autoindent
set smarttab
set smartcase
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
set autoindent

set hlsearch
set incsearch
set smartindent
set ruler
set showcmd
"set cursorline
set ignorecase

set fenc=utf-8 "设定默认解码
set fencs=utf-8,usc-bom,euc-jp,gb18030,gbk,gb2312,cp936
set encoding=utf-8
set fileencodings=ucs-bom,utf-8,gb2312,utf-16,big5
set fenc=utf-8
set nocp "或者 set nocompatible 用于关闭VI的兼容模式
set number "显示行号
set ai "或者 set autoindent vim使用自动对齐,也就是把当前行的对齐格式应用到下一行
set si "或者 set smartindent 依据上面的对齐格式,智能的选择对齐方式
set tabstop=4 "设置tab键为4个空格
set sw=4 "或者 set shiftwidth 设置当行之间交错时使用4个空格
set ruler "设置在编辑过程中,于右下角显示光标位置的状态行
set incsearch "设置增量搜索,这样的查询比较smart
set showmatch "高亮显示匹配的括号
set matchtime=5 "匹配括号高亮时间(单位为 1/10 s) set ignorecase "在搜索的时候忽略大小写
syntax on "高亮语法
" 显示 文件名
set statusline=%f%m%r%h%w%=[ASCII=\%03.3b]\ [HEX=\%02.2B]\ [%04l,%04v][%p%%]
set laststatus=2
au BufNewFile,BufRead *.cpp set syntax=cpp11

set nocompatible " be iMproved, required
filetype off " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

" let Vundle manage Vundle, required
"Plugin 'gmarik/Vundle.vim'
"Plugin 'fatih/vim-go'


" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
let Tlist_Show_One_File=1 "不同时显示多个文件的tag,只显示当前文件的
let Tlist_Exit_OnlyWindow=1 "如果taglist窗口是最后一个窗口,则退出vim
let Tlist_Ctags_Cmd="/usr/bin/ctags" "将taglist与ctags关联

posted @ 2018-08-01 16:46  穆穆兔兔  阅读(201)  评论(0编辑  收藏  举报