Plugin 'gmarik/vundle'
+Plugin 'AndrewRadev/switch.vim'
Plugin 'airblade/vim-gitgutter'
Plugin 'bling/vim-airline'
+Plugin 'chrisbra/checkattach'
Plugin 'derekwyatt/vim-fswitch'
Plugin 'elzr/vim-json'
Plugin 'firef0x/pkgbuild.vim'
Plugin 'majutsushi/tagbar'
Plugin 'octol/vim-cpp-enhanced-highlight'
Plugin 'raimondi/delimitmate'
+Plugin 'rdnetto/ycm-generator'
Plugin 'scrooloose/syntastic'
Plugin 'shougo/unite.vim'
Plugin 'shougo/vimproc.vim'
Plugin 'tomtom/tcomment_vim'
Plugin 'tpope/vim-abolish'
Plugin 'tpope/vim-endwise'
+Plugin 'tpope/vim-eunuch'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-repeat'
-Plugin 'tpope/vim-surround'
+Plugin 'tpope/vim-surround' "investigate vim-sandwich
Plugin 'tpope/vim-unimpaired'
+Plugin 'tweekmonster/spellrotate.vim'
Plugin 'valloric/youcompleteme'
+Plugin 'vim-scripts/mediawiki.vim'
Plugin 'vim-scripts/replacewithregister'
Plugin 'vim-scripts/yankring.vim'
Plugin 'kana/vim-textobj-user'
Plugin 'julian/vim-textobj-variable-segment'
Plugin 'sgur/vim-textobj-parameter'
+Plugin 'kana/vim-operator-user'
" ros
Plugin 'ompugao/ros.vim'
Plugin 'ompugao/ctrlp-ros'
-" seems to have problems right now... may be add later?
-" Plugin 'jalcine/cmake.vim'
-" Plugin 'powerman/vim-plugin-viewdoc'
-
" staging
" find an alternative (latex-box? Automatic Latex Plugin?)
-Plugin 'http://git.code.sf.net/p/vim-latex/vim-latex'
-" Plugin 'lokaltog/vim-easymotion'
-Plugin 'chrisbra/checkattach'
-Plugin 'nathanaelkane/vim-indent-guides'
+Plugin 'vim-latex/vim-latex'
Plugin 'alx741/vinfo'
-Plugin 'vim-scripts/mediawiki.vim'
Plugin 'derekwyatt/vim-protodef'
-Plugin 'rdnetto/ycm-generator'
" needs editing colorscheme
" Plugin 'jeaye/color_coded'
+" Check LucHermites plugins: https://github.com/LucHermitte/lh-cpp
call vundle#end()
" bindings {{{1
-" allow both <space> and / to be <leader>
+" allow both <space> and \ to be <leader>
map <space> <leader>
" make
" http://git.io/v3ZeU
nmap <silent> <leader>qq :echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<' . synIDattr(synID(line("."),col("."),0),"name") . "> lo<" . synIDattr(synIDtrans(synID(line("."),col("."),1)),"name") . ">"<CR>
-" commands {{{1
-command! Cd cd %:h
-command! Cr execute('cd ' . FindGitDirOrHome())
-command! LCd lcd %:h
-command! LCr execute('lcd ' . FindGitDirOrHome())
-
" plugins options {{{1
" airline {{{2
let g:airline#extensions#whitespace#enabled = 1
\ 'GotoPrevSpotAlpha' : "",
\ }
+" switch
+let g:switch_mapping = "<Leader>s"
+
+" spellrotate
+nmap <silent> z] <Plug>(SpellRotateForward)
+nmap <silent> z[ <Plug>(SpellRotateBackward)
+vmap <silent> z] <Plug>(SpellRotateForwardV)
+vmap <silent> z[ <Plug>(SpellRotateBackwardV)
+
" synastic {{{2
let g:syntastic_enable_highlighting = 0
let g:syntastic_error_symbol='E'
let g:tagbar_width = 25
let g:tagbar_iconchars = ['+', '-']
+" tcomments {{{2
+let g:tcommentTextObjectInlineComment = 'gic'
+
" ultisnips {{{2
let g:UltiSnipsEditSplit = 'vertical'
let g:UltiSnipsSnippetsDir = expand("$XDG_CONFIG_HOME/vim/ultisnips")
nnoremap [unite] <Nop>
nmap <leader>u [unite]
+nnoremap [unite]u :UniteResume<CR>
" unite-grep {{{3
" seems not respected
\ | wincmd p | diffthis
endif
+" sort operator {{{2
+function! SortLinesOpFunc(...)
+ '[,']sort
+endfunction
+nnoremap <silent> gs :<C-U>set operatorfunc=SortLinesOpFunc<CR>g@
+vnoremap <silent> gs :sort<cr>
+
" edit configs {{{2
function! EditConfig(what)
let l:dir = split(&runtimepath,',')[0]
return '~'
endif
endfunction
+command! Cd cd %:h
+command! Cr execute('cd ' . FindGitDirOrHome())
+command! LCd lcd %:h
+command! LCr execute('lcd ' . FindGitDirOrHome())
" vim:set et sw=2 ts=2 tw=78: