From 0f20b7341cd56775de4841f8bc2e719a273379aa Mon Sep 17 00:00:00 2001 From: liuhong Date: Mon, 20 Jun 2016 17:57:39 +0800 Subject: [PATCH] add easymotion --- my_configs.vim | 8 ++++++++ vundle_plugins.vim | 2 ++ 2 files changed, 10 insertions(+) diff --git a/my_configs.vim b/my_configs.vim index 650f9320..ee63844d 100644 --- a/my_configs.vim +++ b/my_configs.vim @@ -1,5 +1,10 @@ set number +"高亮当前行 +set cursorline +hi CursorLine cterm=NONE ctermbg=lightblue ctermfg=white +hi CursorColumn cterm=NONE ctermbg=lightblue ctermfg=white + "格式化python代码 au FileType python set formatprg=~/pyformat.py noremap gggqG @@ -17,6 +22,7 @@ let Tlist_Inc_Winwidth=0 "-- WinManager setting -- let g:winManagerWindowLayout='FileExplorer|TagList' " 设置我们要管理的插件 let g:persistentBehaviour=0 " 如果所有编辑文件都关闭了,退出vim +"let g:AutoOpenWinManager=1 " 自动打开WinManager nmap wm :WMToggle "-- YCM -- @@ -24,3 +30,5 @@ let g:ycm_global_ycm_extra_conf='~/.vim/bundle/YouCompleteMe/cpp/ycm/.ycm_extra_ nnoremap jd :YcmCompleter GoToDefinitionElseDeclaration let g:ycm_server_keep_logfiles = 1 let g:ycm_server_log_level = 'debug' + +"-- easy motion -- diff --git a/vundle_plugins.vim b/vundle_plugins.vim index db386aaa..091e7d74 100644 --- a/vundle_plugins.vim +++ b/vundle_plugins.vim @@ -29,3 +29,5 @@ Bundle 'tomtom/tlib_vim' Bundle 'garbas/vim-snipmate' Bundle 'honza/vim-snippets' Bundle 'Valloric/YouCompleteMe' +Bundle 'Raimondi/delimitMate' +Bundle 'easymotion/vim-easymotion'