X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/5f9a3de3258ad159991509ff7d8e48bcb6e9012b..357cfc33c7c87bbaf317efa5338578f2d38cad5c:/vim/vimrc diff --git a/vim/vimrc b/vim/vimrc index 831fa8b..6467ffa 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -10,7 +10,7 @@ set runtimepath& " reset rtp autocmd! set runtimepath+=$XDG_DATA_HOME/vim/vundle -call vundle#rc('$XDG_DATA_HOME/vim') +call vundle#begin('$XDG_DATA_HOME/vim') Plugin 'gmarik/vundle' @@ -74,6 +74,8 @@ Plugin 'rdnetto/ycm-generator' " needs editing colorscheme " Plugin 'jeaye/color_coded' +call vundle#end() + " remove entries first set runtimepath -=$HOME/.vim set runtimepath -=$HOME/.vim/after @@ -549,6 +551,16 @@ let g:pymode_folding = 1 let g:pymode_lint_ignore = "E221,E266,E501" let g:pymode_syntax_space_errors = 0 " don't bother me when I'm typing +" signature {{{2 +" disable '[ mappings + +let g:SignatureMap = { + \ 'GotoNextLineAlpha' : "", + \ 'GotoPrevLineAlpha' : "", + \ 'GotoNextSpotAlpha' : "", + \ 'GotoPrevSpotAlpha' : "", + \ } + " synastic {{{2 let g:syntastic_enable_highlighting = 0 let g:syntastic_error_symbol='E' @@ -632,8 +644,8 @@ end nnoremap [unite]f :Unite -start-insert file_rec/async " unite-buffer {{{3 -call unite#custom#default_action('buffer', 'goto') -nnoremap [unite]b :Unite buffer +call unite#custom#default_action('buffer', 'open') +nnoremap [unite]b :Unite buffer:- " unite-menu {{{3 let g:unite_source_menu_menus = {}