1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
| set nocompatible " Set nocompatible // nc " let g:mapleader=";" " Mapping global leader " let mapleader=";" " Mapping local leader " " ==========>> Encoding <<=========== " set encoding=utf-8 " Only available when compiled with +multi_byte" set fileencoding=utf-8 set fileencodings=utf-8,gb18030,gbk,gb2312,ucs-bom,shift-jis,cp936,iso-8859-6 " fencs" set ffs=unix,dos,mac " Default File Format Type " set ambiwidth=double " cjk "
noremap <Leader>fu :set fileformat=unix<CR>
noremap <Leader>fd :set fileformat=dos<CR>
filetype plugin indent off set rtp+=$VIMFILES/vundle call vundle#rc() call vundle#begin($VIMFILES) "--------------------------- System and location ------------------------------" "" function! MySys() " Operating System " if has("win32")||has("win16")||has("win64")||has("win95") return "win" elseif has("mac") return "mac" else return "unix" endif endfunction if MySys()=="win" set shell=cmd.exe let $VIMFILES=$HOME.'\\_vim' else let $VIMFILES=$HOME.'/.vim/' set shell=bash endif ""## 插件管理 "------------------------------------ Vundle ----------------------------------" "" Using vundle for managing vim scripts "" git clone https://github.com/gmarik/vundle.git ~/.vim/vundle """" Scripts on vim.org Plugin 'jQuery' Plugin 'Vimball' Plugin 'vimwiki' Plugin 'yegappan/mru' Plugin 'gmarik/vundle' Plugin 'yegappan/grep' Plugin 'bash-support.vim',{'name':'bash-support'} Plugin 'darkshell/cvim' Plugin 'rkulla/pydiction' Plugin 'wesleyche/SrcExpl' Plugin 'darkshell/calendar' Plugin 'darkshell/SnipMate' Plugin 'darkshell/SuperTab' Plugin 'scrooloose/nerdtree' Plugin 'jiangmiao/auto-pairs' Plugin 'darkshell/winmanager' Plugin 'darkshell/Latex-suite'
Plugin 'vim-scripts/autopreview' Plugin 'scrooloose/nerdcommenter' Plugin 'vim-scripts/AutoComplPop' Plugin 'vim-scripts/neocomplcache' Plugin 'vim-scripts/OmniCppComplete' "----------------------------------------------" Plugin 'a.vim', {'name':'avim'} Plugin 'python.vim', {'name':'python'} Plugin 'mivok/vimtodo',{'name':'todo'} Plugin 'othree/xml.vim',{'name':'xml'} Plugin 'taglist.vim', {'name':'taglist'} Plugin 'matchit.zip', {'name':'matchit'}
Plugin 'darkshell/netrw.vim',{'name':'netrw'} Plugin 'vim-scripts/sudo.vim',{'name':'sudo'} Plugin 'vim-scripts/info.vim',{'name':'info'}
Plugin 'darkshell/schemepack',{'name':'colors'} Plugin 'kevinw/pyflakes-vim',{'name':'pyflakes'} Plugin 'vim-pandoc/vim-pandoc',{'name':'pandoc'}
Plugin 'basilgor/vim-autotags',{'name':'autotags'} Plugin 'docunext/closetag.vim',{'name':'closetag'}
Plugin 'plasticboy/vim-markdown',{'name':'markdown'} Plugin 'vim-scripts/fortran.vim', {'name':'fortran'}
Plugin 'vim-scripts/bufexplorer.zip',{'name':'bufexplorer'}
Plugin 'vim-pandoc/vim-pandoc-syntax',{'name':'pandoc-syntax'}
Plugin 'xuhdev/vim-latex-live-preview', {'name':'latex-live-preview'} call vundle#end() "------------------------------- End of Vundle --------------------------------"
"" =========================== General Setting ============================= "" set history=1000 " How many commonds to remember " set selection=exclusive " Use mouse anywhere " set mouse=a " Enable mouse all the time " set ttymouse=xterm2 set mousemodel=popup set selectmode=mouse,key " Selectmode " set sessionoptions+=resize " Keep Windows Size " set nobackup " No Auto-Backup " set noswapfile " No Swapfile" set nowritebackup " Save a backup file before editing // nowb" set clipboard+=unnamed set autowrite " Automaticall save before commands" set autoread " Autoread the file when changed outside " filetype plugin indent on " filetype detectinf plugin and indent on " set list set listchars=tab:\|\ ,trail:^
" =======>> VIM USERINTERFACE <<======= " set showmode set linebreak " Set Linebreak " set wildmenu " Turn on Wild Menu " set ruler " Alwasy show current position " set scrolloff=5 " Set 7 Lines up or down vertically " set number " Show the line number // nu" augroup numbertoggle autocmd! autocmd BufEnter,FocusGained * set relativenumber autocmd BufLeave,FocusLost * set norelativenumber augroup END set hidden " Hide buffers when abandoned // hid " set magic " Set Magic on for Regular Expression " set backspace=indent,eol,start " Set Backspace " set showcmd " Show Command in Status Line " set cursorline " highlight Current Line " set mat=4 set nolazyredraw " Do not Redraw When Running macros.. // lz " set novisualbell " No Error Bells In GUI Mode " set noerrorbells " No Error Bells " "set paste " Does not format text when pasting text set formatoptions+=tcrmMj set textwidth=100 set colorcolumn=+0
"""""""" Status Line """""""" set cmdheight=1 " The height of commandbar " set laststatus=2 " Alwasy Hide the statusline " set statusline= " Initialize Statusline " set statusline+=[%F]%m%r%h%w%{'-'}[%{'row='}%l,%{'col='}%v]%{'-'}[%p%%]
set statusline+=%{'-'}[%{&fileformat}]%{'-'}[%{&encoding}]
"set statusline+=%{'-'}[%{strftime(\"%m/%d\ %H:%M:%S\")}]
"""""""""" Folding """""""""" set foldenable " Enable Code Folded // fen" set foldmethod=syntax " Fold Method "
"""""""""" Search """""""""""" set showmatch " Highlight the Matching Bracket " set matchtime=2 " Time of Showing Matching " set ignorecase " Igore case when searching " set hlsearch " Highlight Searching Things // hls "
map nh <ESC>:nohl<CR> set incsearch " Search As You Are Typing " set smartcase " Smart Case Matching "
"""""""""" Softtab """""""""" set tabstop=4 " Number of Spaces That Tab Use // ts " set softtabstop=4 " Number of Spaces That Tab uses When Editing " set shiftwidth=4 " ???? // sw " set noexpandtab " Don't Replace Tab with Spaces " set smarttab " Use shiftwidth When Inserting Tab "
""""""""""" Indent """"""""""" set autoindent " Auto-Indent // ai " set smartindent " Smart Indent // si " set cindent " C-Style Indent // cin " set wrap " Wrap Line " set whichwrap+=<,>,h,l " Backspace and Cursor Keys Wrap to "
""""""""""" Syntax """"""""""" syntax enable " Syntax Highlight " syntax on " Syntax Highlight "
"""""""" ColorScheme """""""" set background=dark " Use a dark background " if has("gui_running") colorscheme torte else colorscheme torte endif "colorscheme molokai " Color Scheme
colorscheme vividchalk
"colorscheme wuye "good
"""""" Persistent Undo """""" set undofile set undolevels=1000 set undodir=$VIMFILES./undodir
"""""""" GUI Settings """""""" if has("gui_running") set t_Co=256 " Number of Colors " set cursorline " Reverse Text" hi cursorline guibg=#333333 set guioptions-=m " No Menu " set guioptions-=T " " set guioptions-=l set guioptions-=L set guioptions-=r set guioptions-=R set guioptions+=b set spell if !MySys()=="win" set guifont=YaHei\ Consolas\ Hybrid\ 14 endif else highlight ColorColumn ctermbg=8 guibg=3 highlight WhitespaceEOF ctermbg=3 guibg=12 highlight TabEOF ctermbg=3 guibg=12 match WhitespaceEOF /\s\+$/ match TabEOF /\t\+$/ endif """"""
"------------------------------------------------------------------------------" " ===========================>> Mapping Setting <<============================ " "------------------------------------------------------------------------------" " Select the Whole " map <C-A> <Esc>ggVG " Fast Edit .vimrc " nnoremap <Leader>ev <ESC>:tabnew ~/.vimrc<CR> nnoremap <Leader>eb <ESC>:tabnew $HOME/.bash_aliases<CR> nnoremap <Leader>et <ESC>:tabnew $HOME/.tmux.conf<CR>
nmap 1b 0 nmap 1e $ "" " Copy Selected to the System " vnoremap <Leader>y " Paste Selected to Vim " vnoremap <Leader>p "" noremap <Leader>q :q!<cr> nnoremap s <ESC>:w!<cr> "" nmap <SPACE> : nmap <SPACE><SPACE> :: nmap :: :! imap <silent> <C-D><C-D> <C-R>=strftime("Modified: %Y-%m-%d %p %H:%M:%S")<cr>
noremap <Leader><Leader> :%s//g<Left><Left> """"""" Moving Windows """"""" noremap <C-d> <C-W>j noremap <C-k> <C-W>k noremap <C-h> <C-W>h noremap <C-l> <C-W>l noremap mw <C-W><C-W>
"""""" Buffers Related """""" set bsdir=buffer " Home directory of FileExplorer" set autochdir nnoremap <Leader>bn <ESC>:bnext<CR> nnoremap <Leader>bp <ESC>:bprevious<CR>
"""""""""""" Tabs """""""""""" " Maxium of Opened Tabs " set tabpagemax=30 " Open a New Tab under Current Directory " nnoremap <C-T> <ESC>:tabnew .<cr> " Close Current Tab " nnoremap tc <ESC>:tabclose<cr> " Move to the Next Tab " nnoremap tn <ESC>:tabnext<cr> " Move to the Previous Tab " nnoremap tp <ESC>:tabprevious<cr> " Open a New Blank Tab " nnoremap te <ESC>:tabedit<cr> " Switch to the First Tab " nnoremap tf <ESC>:tabfirst<cr>
"------------------------------------------------------------------------------" "" ======>> Autocmd Command <<====== "" "" Jump to Where Exited Before if has("autocmd") autocmd! BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif endif "" Auto Reload .vimrc When Edited. autocmd! BufWritePost .vimrc source ~/.vimrc
" ===========>> Some Mode <<========== " au FileType txt set linebreak textwidth=78 function! PythonMode() set tabstop=4 set shiftwidth=4 set noexpandtab endfunction
"------------------------------------------------------------------------------" " ====================>> Functions <<===================== " "------------------------------------------------------------------------------" "" function! GetPWD() return substitute(getcwd(),"", "", "g") endfunction
" **************************************************************************** " "------------------------------------------------------------------------------" "" Python "" "------------------------------------------------------------------------------"
autocmd FileType python map <Leader>ll :!python %<CR> let g:pydiction_menu_height=3 let g:pydiction_location='~/.vim/pydiction/complete-dict'
"------------------------------------------------------------------------------" "" Ruby "" "------------------------------------------------------------------------------"
""##插件配置 "------------------------------------------------------------------------------" " ==================>> Plugins Setting <<================= " "------------------------------------------------------------------------------"
""""""""""""""" xml.vim """"""""""""""" ""
" ============>> Calendar <<========== " " Open Calendar at the left side " noremap <F8> :Calendar<cr> """""""""""""""""" Haskell """""""""""""""""" """""""""" setlocal omnifunc=necoghc#omnifunc """""""""" """""""""" let g:haskell_indent_if=2 " ============>> Vimwiki <<=========== " let g:vimwiki_use_mouse=1 let g:vimwiki_menu='' let g:vimwiki_folding=1 let g:vimwiki_camel_case=1 let g:vimwiki_CJK_length=1 map <Leader>dd <Plug>VimwikiDeleteLink let g:vimwiki_list=[{'path':'~/Sites/wiki/wiki', 'path_html':'~/Sites/wiki/html', \'template_path':'~/Sites/wiki/template/', 'auto_export': 1, \'template_default': 'default', 'template_ext': '.html',}] let g:vimwiki_diary_months={ 1: 'January', 2: 'February', 3: 'March', 4: 'April', \5: 'May', 6: 'June', 7: 'July', 8: 'August', \9: 'September', 10: 'October', 11: 'November', 12: 'December'} let g:vimwiki_valid_html_tags='b,i,s,u,sub,sup,kbd,br,hr,div,del,code,red,center,left,right,h4,h5,h6,pre,script,h1,h2,h3,ul,li,ol,' nnoremap <S-F5> <ESC>:VimwikiAll2HTML<cr> nnoremap <F5> <ESc>:Vimwiki2HTML<cr> let g:vimwiki_hl_cb_checked = 1
" =============>> ctags <<============ "
" Tags for C++ " map <F9> :!ctags -R --c++-kinds=+p --fields=+iaS --extra=+q --language-force=C++ .<cr> let g:ctags_path='`which ctags`' " If ctags is not in your PATH " let g:ctags_statusline=1 " Display Function Name in the Status Line " let g:ctags_title=1 " Function Name Displayed in the Title Bar " let generate_tags=1 " Automatically Generate Tags When Started" let g:ctags_regenerate=1 " Regenerate Tags Each Time Buffer is Written " set tags= set tags+=./tags set tags+=../tags set tags+=./include/tags set tags+=../include/tags set tags+=/usr/include/tags " ==========>> CloseTags <<========== " let g:closetag_html_style=1 au filetype html,xml,xsl,wiki,css,md,MD source $VIMFILES/closetag/plugin/closetag.vim
" =======>> cppSyntaxChecher <<======= " let g:compile_flag="_D_LINUX_" let g:include_path=":../include/:./include/" let g:cpp_compiler="/usr/bin/g++" let g:enable_warning=1 let g:cpp_compiler="LANG=C g++ -Wall" let g:longest_text=120
" ==========>> ConqueTerm <<========== " "let g:ConqueTerm_FastMode=1 " enable fast mode "let g:ConqueTerm_Color=1 " enable terminal colors "let g:ConqueTerm_CloseOnEnd=1 " close buffer when exits
""""""""""" Command-t """""""""""""""""
"""""""""""""" Winmanager """""""""""" let g:winManagerWindowLayout='FileExplorer|BufExplorer|TagList' let g:persistentBehaviour=0 " Exit Vim When Only one left " let g:winManagerWidth=20 let g:defaultExplorer=1 nmap <silent> <c-w><c-f> <ESC>:FirstExplorerWindow<cr> nmap <silent> <c-w><c-b> <ESC>:BottomExplorerWindow<cr> noremap <F7> :WMToggle<cr>
""""""""""""""" NerdTree """""""""""""
let g:NERDTree_title='NERDTree' let g:NERDTreeMapToggleZoom='a' let g:NERDTreeMapToggleHidden='h' map <Leader>nt :NERDTreeToggle<CR> noremap <F3> <ESC>:NERDTreeToggle<CR>
""""""""""""""" BufExplorer """""""""""
let g:bufExplorerSortBy="name" let g:bufExplorerFindActive=1
"""""""""""" NERD_Commenter """"""""""""
let NERDSpaceDelims=1 let NERDCompactSexyComs=1
" ============>> Syntax <<============ " " ====>> Conkyrc <<==== " " Nothing " " ======>> PHP <<====== " " Nothing " " ====>> jquery <<===== " au BufRead,BufNewFile jquery.*.js set ft=javascript syntax=jquery
" ==>> JavaScripts <<== " " Nothing "
let g:checksyntax_auto = 0 " ============>> AutoTags <<========== "
" ===========>> Auto-Pairs <<========== " let g:AutoPairsMapSpace=0 let g:AutoPairsFlyMode=1 let g:AutoPairsMapCR=0 let g:AutoPairsCenterLine=1 autocmd FileType tex let g:AutoPairs={'(':')','[':']','{':'}','"':'"',"'":"'"}
" =========>> AutoPreview <<========== " let g:AutoPreview_enabled=0 let g:AutoPreview_allowed_filetypes=["c","cpp","h","java","hpp","C","cxx","sh","py","cc","m","gp"] nnoremap <Leader>ap :AutoPreviewToggle<cr> inoremap <F6> <ESC>:AutoPreviewToggle<cr> set updatetime=500
" =============>> a.vim <<============ " " Splits and Switches " noremap <Leader>as <ESC>:AS<CR> " Vertical Splits and Switches " noremap <Leader>av <ESC>:AV<CR> " New Tab and Switches " noremap <Leader>at <ESC>:AT<CR> " noremap <Leader>ih <ESC>:IH<CR> " Switches to File under Cursor " noremap <Leader>is <ESC>:IHS<CR> " Splits and Switches to File under Cursor " Vertical Splits and Switches " noremap <Leader>iv <ESC>:IHV<CR> " New Tab and Switches to File under Curror " noremap <Leader>it <ESC>:IHT<CR> " noremap <Leader>ihn <ESC>:IHN<CR> " Cycles through Matches
" ===========>> MRU <<========= " let MRU_Max_Entries=400 let MRU_Exclude_Files = '\v^.*\~$|/COMMIT_EDITMSG$|/itsalltext/|^/tmp/' let MRU_Add_Menu=0 " Not Adding to Menu Bar " nmap <Leader>m :MRU<CR>
" ============>> Sudo.vim <<========== "
" --------------------- Done Above ----------------------- "
" ============>> Syntax <<============ " " ====>> todo.vim <<=== " if join(getline(1,100),' ') =~? '\<#\?TODO\>' setfiletype todo endif """"""""""""""" autofmt """"""""""""""" """"""""""
" ============>> AutoClose <<========= " " ===========>> Latex-Suite <<========= " if MySys()=="win" set shellslash endif "" Set Viewer to Open The Target "" if MySys()=="unix" if executable("evince") let g:Viewer="evince" let g:Tex_ViewRule_pdf='evince' elseif executable("okular") let g:Viewer="okular" let g:Tex_ViewRule_pdf='okular' endif elseif MySys()=="mac" let g:Tex_ViewRule_pdf = 'open -a Preview' let g:Viewer="open -a Preview" endif let g:Tex_DefaultTargetFormat="pdf" let g:tex_flavor='xelatex' " Flavered Tex Engine " autocmd FileType tex set sw=2 let g:Tex_CompileRule_dvi='xelatex -src-specials -interaction=nonstopmode $*' let g:Tex_CompileRule_pdf='xelatex -src-specials -interaction=nonstopmode $*' autocmd FileType tex map <Leader>t <ESC>:w<CR> <Leader>ll<CR>
autocmd FileType tex nmap <Tab> <C-j> autocmd FileType tex imap <Tab> <C-j> autocmd FileType tex vmap <Tab> <C-j>
" ======>> C/C++ IDE Compilor <<====== " """" Tags """" Compilor """" Cscope """""""""""" Bash-support """"""""""""""
" =========>> Taglist <<======== " "" if MySys()=="win" let Tlist_Ctags_Cmd='ctags.exe' else let Tlist_Ctags_Cmd='`which ctags` ' endif let TagList_title="TagList" " TagList Window Name" let Tlist_File_Fold_Auto_Close=1 let Tlist_Show_One_File=1 let Tlist_OnlyWindow=1 let Tlist_Use_Right_Window=1 " Tags on the Right" let Tlist_Sort_Type='name' let Tlist_Exit_OnlyWindow=1 let Tlist_Show_Menu=1 let Tlist_Max_Submenu_Items=10 let Tlist_Max_Tag_length=20 let Tlist_Use_SingleClick=1 let Tlist_Auto_Open=0 let Tlist_Auto_Update=1 let Tlist_Close_On_Select=0 let Tlist_GainFocus_On_ToggleOpen=1 let Tlist_Process_File_Always=1 let Tlist_WinWidth=18 let Tlist_Use_Horiz_Window=0 let Tlist_Enable_Fold_Column=0 let Tlist_Display_Prototype=0 let Tlist_Hightlight_Tag_On_BufEnter=1 let Tlist_Compact_Format=1 let tlist_diff_settings = 'diff;f:file' let tlist_git_settings = 'diff;f:file' let tlist_gitcommit_settings = 'gitcommit;f:file' let tlist_privoxy_settings = 'privoxy;s:sections' set iskeyword+=:,-,_ "" Open/Close TagList nmap <silent> tl <ESC>:TlistToggle<CR>
""""""""""" NeoComplCache """"""""""""" let g:acp_enableAtStartup=0 " Disable AutoComplPop " let g:neocomplcache_enable_at_startup=1 " Use NeoComplCache at Startup " let g:neocomplcache_enable_auto_select=1 " AutoComplPop like Behavior " let g:NeoComplCache_Enable_Smart_Case=1 " Use SmartCase " let g:neocomplcache_enable_camel_case_completion=1 " Use Camel Case Completion " let g:NeoComplCache_EnableInfo=1 let g:neocomplcache_enable_underbar_completion=1" Use underbar Completion " let g:neocomplcache_min_syntax_length=2 " Set Minimum syntax keyword length " let g:neocomplcache_enable_quick_match=1 let g:neocomplcache_max_list=20 " Set the Maxium list in the popup menu " if !exists('g:neocomplcache_keyword_patterns') let g:neocomplcache_keyword_patterns={} else let g:neocomplcache_keyword_patterns['default']='\h\w*' endif let g:neocomplcache_auto_completion_length=1 let g:neocomplcache_enable_ignore_case=1 let g:NeoComplCache_EnableSkipCompletion=1 let g:NeoComplCache_SkipInputTime='0.5' let g:NeoComplCache_SnippetsDir=$VIMFILES.'bundle/snipMate/snippets'
"""""""" OmniCppComplete """""""" let OmniCpp_NamespaceSearch=1 let OmniCpp_GlobalScopeSearch=1 let OmniCpp_ShowAccess=1 let OmniCpp_ShowPrototypeInAbbr=1 let OmniCpp_MayCompleteDot=1 let OmniCpp_MayCompleteArrow=1 let OmniCpp_MayCompleteScope=1 let OmniCpp_Defaultnamespaces=["std","_GLIBCXX_STD"]
autocmd FileType css set omnifunc=csscomplete#CompleteCSS autocmd FileType python setlocal omnifunc=pythoncomplete#Complete autocmd FileType xml setlocal omnifunc=xmlcomplete#CompleteTags
"""""""""""""" grep """""""""""""""""""" set grepprg=grep\ -nH\ $* let Grep_Skip_Dirs = 'RCS CVS SCCS .svn generated' " Grep_Skip_Dirs "
"""""""""""""""""""""""""""""""""""""""" " ============>> SnipMate <<========= "
"""""""""""""""""""""""""""""""""""""""" " ============>> Supertab <<========= "
"""""""""""""""""""""""""""""""""""""""" " ============>> cvim <<============= "
""""""""""""""" matchit.vim """""""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""" """"""""""""""" ZenCoding.vim """""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""" """"""""""""""" surround.vim """""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""" """"""""""""""""""" yankring.vim """""""""""""""""
"""""""""""""""""""""""""""""""""""""""" " ==========>> pyflakes-vim <<======= " """"""""""""""""""""""""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""" """"""""""""""" Doxygen """"""""""""" let g:DoxygenToolkit_authorName="Asins - asinsimple AT gmail DOT com" let g:DoxygenToolkit_briefTag_funcName="yes" map <leader>da :DoxAuthor<CR> map <leader>df :Dox<CR> map <leader>db :DoxBlock<CR> map <leader>dc a /* */<LEFT><LEFT><LEFT>
""""""""""""""" Vjde """""""""""""""""
"""""""""""""""""""""""""""""""""""""""" "------------------------------------------------------------------------------"
|