X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=vim%2Fvimrc;h=86878247e48f528db4ab564045b4502bc31da3f5;hb=e73601ca440d09097b9e5b20906a4fe96af2f16e;hp=f9aa421b2e4b5a3a99b9cdeb2464a147dd46932b;hpb=023f6ced31b85b3b1ccdf6b9cf02b2fd578a3da6;p=dotfiles.git diff --git a/vim/vimrc b/vim/vimrc index f9aa421..8687824 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -39,6 +39,7 @@ Bundle 'MattesGroeger/vim-bookmarks' "Bundle 'kien/ctrlp.vim' "disable since some conflicting mapping Bundle 'vim-latex/vim-latex' +Plugin 'vimperator/vimperator.vim' call vundle#end() filetype plugin indent on @@ -93,7 +94,7 @@ if has("gui_running") set macmeta "" Macvim only colorscheme molokai set guioptions+=c - set guifont=Sauce\ Code\ Powerline\ Light:h11 + set guifont=Source\ Code\ Pro\ Light:h11 highlight Cursor guifg=white guibg=green set guicursor=a:blinkon0 set guioptions=eac @@ -296,12 +297,17 @@ nnoremap sr :FufRenewCache " YouCompleteMe ----------------------------------------------------------- {{{ "syntax on, must before the YCM, +" Load YouCompleteMe only on OSX +if !has("osx") + let g:loaded_youcompleteme = 1 +endif + "let g:ycm_collect_identifiers_from_tags_files = 1 let g:ycm_global_ycm_extra_conf = '~/.vim/bundle/YouCompleteMe/third_party/ycmd/cpp/ycm/.ycm_extra_conf.py' " this is fix youcompleteme python error "http://www.cnblogs.com/clivelee/p/4266559.html "https://github.com/Valloric/YouCompleteMe/issues/18 -let g:ycm_path_to_python_interpreter= '/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python' +"let g:ycm_path_to_python_interpreter= '/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python' let g:ycm_auto_trigger = 1 let g:ycm_seed_identifiers_with_syntax = 1 let g:ycm_show_diagnostics_ui = 0 @@ -376,8 +382,9 @@ endfunction "endif " }}} " NerdTree ---------------------------------------------------------------- {{{ -" TODO check if this is already using in plugins -"nmap n :NERDTreeToggle +" Fix keymapping conflict +nmap , MarkClear +nmap n :NERDTreeToggle nmap N :NERDTreeFind " }}} " AutoClose --------------------------------------------------------------- {{{