自用VIM配置

主要用了pydiction,winManager,taglist,ctags似乎没有起作用,更复杂的也没有装。其实VIM也挺好用的,希望可以掌握更多强大的命令!

 1 set number
 2 colo darkblue
 3 set nocp
 4 set ru
 5 set hls
 6 syntax on
 7 set backspace=indent,eol,start
 8 set whichwrap=b,s,<,>,[,]
 9 set fileencodings=utf-8,gbk
10 set ambiwidth=double
11 set smartindent
12 set mouse=a
13 set encoding=cp936
14 set sw=4
15 set ts=4
16 set sm
17 set cin
18 set mousemodel=popup
19 
20 filetype plugin indent on
21 set completeopt=longest,menu
22 set wildmenu
23 autocmd FileType python set omnifunc=pythoncomplete#Complete
24 set ofu=syntaxcomplete#Complete
25 imap <silent> ` <C-X><C-O>
26 "taglist
27 let Tlist_Show_One_File=1
28 let Tlist_Exit_OnlyWindow=1
29 
30 "pydiction
31 let g:pydiction_location='C:\Program Files (x86)\vim73\ftplugin\complete-dict'
32 
33 "WinManager
34 let g:winManagerWindowLayout='FileExplorer'
35 nmap wm :WMToggle<cr>
36 
37 let g:miniBufExplMapWindowNavVim = 1 
38 let g:miniBufExplMapWindowNavArrows = 1 
39 let g:miniBufExplMapCTabSwitchBufs = 1 
40 let g:miniBufExplModSelTarget = 1
原文地址:https://www.cnblogs.com/njucslzh/p/2646678.html