vim 配置

引用 http://www.cnblogs.com/ma6174/archive/2011/12/10/2283393.html

syntax enable  
syntax on  

colorscheme desert  

set nocompatible  
set filetype=c  

set number  
set numberwidth=4  

set wrap " 自动换行  

set autoindent   
set smartindent  
set cindent  
set ai!  

set smarttab " 在行和段开始处使用制表符  

set cursorline " 高亮显示当前行  
"set expandtab   
set noexpandtab " 不要用空格来代替制表符tab  
set tabstop=8  
set shiftwidth=8  
set softtabstop=8  

set mouse=a  

set showmatch " 高亮显示匹配的括号  
set history=1000  
set hlsearch " 高亮被搜索的句子  
set incsearch  
set nowrapscan   " 禁止搜索到文件两端时重新搜索  

set gdefault  


set diffexpr=MyDiff()  

function MyDiff()  
        let opt = '-a --binary '  
        if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif  
        if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif  
        let arg1 = v:fname_in  
        if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif  
        let arg2 = v:fname_new  
        if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif  
        let arg3 = v:fname_out  
        if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif  
        let eq = ''  
        if $VIMRUNTIME =~ ' '  
                if &sh =~ '\<cmd'  
                        let cmd = '""' . $VIMRUNTIME . '\diff"'  
                        let eq = '"'  
endfunction  

" 启动最大化  
"if has('gui_running') && has("win32")  
"    au GUIEnter * simalt ~x  
"endif  

"  
"文件显示编码  
set fileencodings=utf-8,gbk2312,gbk,gb18030,cp936  
set encoding=utf-8  
set termencoding=utf-8  
set fileencoding=utf-8  
set imcmdline    



" 解决菜单乱码  
"-----------------------------------  
set langmenu=zh_CN  
let $LANG = 'zh_CN.UTF-8'  
source $VIMRUNTIME/delmenu.vim  
source $VIMRUNTIME/menu.vim  

source $VIMRUNTIME/vimrc_example.vim  
source $VIMRUNTIME/mswin.vim  
behave mswin  
"-----------------------------------  

"  
"vim 提示信息乱码解决方法  
"language messages zh_CN.UTF-8  
if has("win32")  
set termencoding=chinese  
language message zh_CN.UTF-8  
endif  


" 多标签  
"let Tlist_Ctags_Cmd='D:\Vim\vim73\ctags.exe'  
let Tlist_Ctags_Cmd='ctags.exe'  
set autochdir  
set tags=tags;  " ';' 不能没有  

let Tlist_Auto_Open=1 " Auto Open when VIM opening  
let Tlist_Show_One_File=1 " 只显示当前文件的标签  
let Tlist_Exit_OnlyWindow=1 " 当只有 Tlist 窗口时关闭  
let Tlist_Use_Right_Window=0  " 窗口在右边 = 1  
"let Tlist_Show_Menu=1 "显示taglist菜单  
"let Tlist_File_Fold_Auto_Close=1 "让当前不被编辑的文件的方法列表自动折叠起来   


" 窗口管理  
"let g:winManagerWindowLayout='FileExplorer|TagList'  
let g:winManagerWindowLayout='FileExplorer' " 各单独一个窗口, 一屏可以观察更多  
"let g:winManagerWindowLayout='TagList|FileExplorer,BufExplorer'  
"let g:winManagerWindowLayout='FileExplorer|BufExplorer'  
nmap wm :WMToggle<cr>  


" 多文件编辑  
"ctrl+Tab,切换到前一个buffer,并在当前窗口打开文件;  
"ctrl+shift+Tab,切换到后一个buffer,并在当前窗口打开文件;  
"ctrl+箭头键,可以切换到上下左右窗口中;  
"ctrl+h,j,k,l,切换到上下左右的窗口中。  
let g:miniBufExplMapCTabSwitchBufs=1  
let g:miniBufExplMapWindowsNavVim=1  
let g:miniBufExplMapWindowNavArrows=1  

"快速切换头文件与源文件, 按F12即可以在c/h文件中切换,也可以通过输入:A实现  
nnoremap <silent> <F12> :A<CR>  

"工程中快速查找, F3 快捷键, 然后支持正则表达式  
nnoremap <silent> <F3> :Grep<CR>  


" 自动补全  
filetype plugin indent on  
set completeopt=longest,menu   

let g:SuperTabRetainCompletionType=2   
let g:SuperTabDefaultCompletionType="<C-X><C-O>" 


""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 
" 以下来自其他配置文件
" 文件设置 
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 
" 不要备份文件(根据自己需要取舍) 
set nobackup 

" 不要生成swap文件,当buffer被丢弃的时候隐藏它 
setlocal noswapfile 
set bufhidden=hide 

" 字符间插入的像素行数目 
set linespace=0 

" 增强模式中的命令行自动完成操作 
set wildmenu 

" 在状态行上显示光标所在位置的行号和列号 
set ruler 
set rulerformat=%20(%2*%<%f%=\ %m%r\ %3l\ %c\ %p%%%) 

" 命令行(在状态行下)的高度,默认为1,这里是2 
set cmdheight=2 

" 使回格键(backspace)正常处理indent, eol, start等 
set backspace=2 

" 允许backspace和光标键跨越行边界 
set whichwrap+=<,>,h,l 

" 可以在buffer的任何地方使用鼠标(类似office中在工作区双击鼠标定位) 
set mouse=a 
set selection=exclusive 
set selectmode=mouse,key 

" 启动的时候不显示那个援助索马里儿童的提示 
set shortmess=atI 

" 通过使用: commands命令,告诉我们文件的哪一行被改变过 
set report=0 

" 不让vim发出讨厌的滴滴声 
set noerrorbells 

" 在被分割的窗口间显示空白,便于阅读 
set fillchars=vert:\ ,stl:\ ,stlnc:\ 


""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 
" 搜索和匹配 
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 
" 高亮显示匹配的括号 
set showmatch 

" 匹配括号高亮的时间(单位是十分之一秒) 
set matchtime=5 

" 在搜索的时候忽略大小写 
set ignorecase 

" 不要高亮被搜索的句子(phrases) 
set nohlsearch 

" 在搜索时,输入的词句的逐字符高亮(类似firefox的搜索) 
set incsearch 

" 输入:set list命令是应该显示些啥? 
set listchars=tab:\|\ ,trail:.,extends:>,precedes:<,eol:$ 

" 光标移动到buffer的顶部和底部时保持3行距离 
set scrolloff=3 

" 不要闪烁 
set novisualbell 

" 我的状态行显示的内容(包括文件类型和解码) 
"set statusline=%F%m%r%h%w\[POS=%l,%v][%p%%]\%{strftime(\"%d/%m/%y\ -\ %H:%M\")} 

" 总是显示状态行 
set laststatus=2 


""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 
" 文本格式和排版 
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 
" 自动格式化 
set formatoptions=tcrqn 

" 继承前一行的缩进方式,特别适用于多行注释 
set autoindent 

" 为C程序提供自动缩进 
set smartindent 

" 使用C样式的缩进 
set cindent 

" 制表符为4 
set tabstop=4 

" 统一缩进为4 
set softtabstop=4 
set shiftwidth=4 

" 不要用空格代替制表符 
set noexpandtab 

" 不要换行 
set nowrap 

" 在行和段开始处使用制表符 
set smarttab 

""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 
" CTags的设定 
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 
" 按照名称排序 
let Tlist_Sort_Type = "name" 

" 在右侧显示窗口 
let Tlist_Use_Right_Window = 1 

" 压缩方式 
let Tlist_Compart_Format = 1 

" 如果只有一个buffer,kill窗口也kill掉buffer 
let Tlist_Exist_OnlyWindow = 1 

" 不要关闭其他文件的tags 
let Tlist_File_Fold_Auto_Close = 0 

" 不要显示折叠树 
let Tlist_Enable_Fold_Column = 0 

""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 
" Autocommands 
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 
" 只在下列文件类型被侦测到的时候显示行号,普通文本文件不显示 

if has("autocmd") 
autocmd FileType xml,html,c,cs,java,perl,shell,bash,cpp,python,vim,php,ruby set number 
autocmd FileType xml,html vmap <C-o> <ESC>'<i<!--<ESC>o<ESC>'>o--> 
autocmd FileType java,c,cpp,cs vmap <C-o> <ESC>'<o 
autocmd FileType html,text,php,vim,c,java,xml,bash,shell,perl,python setlocal textwidth=100 
autocmd Filetype html,xml,xsl source $VIMRUNTIME/plugin/closetag.vim 
autocmd BufReadPost * 
\ if line("'\"") > 0 && line("'\"") <= line("$") | 
\ exe " normal g`\"" | 
\ endif 
endif "has("autocmd") 

" F5编译和运行C程序,F6编译和运行C++程序 
" 请注意,下述代码在windows下使用会报错 
" 需要去掉./这两个字符 

" C的编译和运行 
map <F5> :call CompileRunGcc()<CR> 
func! CompileRunGcc() 
exec "w" 
exec "!gcc % -o %<" 
exec "! ./%<" 
endfunc 

" C++的编译和运行 
map <F6> :call CompileRunGpp()<CR> 
func! CompileRunGpp() 
exec "w" 
exec "!g++ % -o %<" 
exec "! ./%<" 
endfunc 


au BufReadPre *.nfo call SetFileEncodings('cp437')|set ambiwidth=single au BufReadPost *.nfo call RestoreFileEncodings() 

" 高亮显示普通txt文件(需要txt.vim脚本) 
au BufRead,BufNewFile * setfiletype txt 

" 用空格键来开关折叠 
set foldenable 
set foldmethod=manual 
nnoremap <space> @=((foldclosed(line('.')) < 0) ? 'zc':'zo')<CR> 

" minibufexpl插件的一般设置 
let g:miniBufExplMapWindowNavVim = 1 
let g:miniBufExplMapWindowNavArrows = 1 
let g:miniBufExplMapCTabSwitchBufs = 1 
let g:miniBufExplModSelTarget = 1
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值