X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/b481aa7998437d006b2c3e663f7086f923f7e40c..4b9a31fb825b0457cddcff1f51a616e0bf50b47e:/vim/vimrc diff --git a/vim/vimrc b/vim/vimrc index c501572..504cbd7 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -17,6 +17,7 @@ Plug 'junegunn/vim-plug' Plug 'airblade/vim-gitgutter' Plug 'alepez/vim-gtest' +Plug 'alx741/vinfo' Plug 'andrewradev/switch.vim' Plug 'bling/vim-airline' Plug 'chrisbra/checkattach' @@ -46,6 +47,7 @@ Plug 'tpope/vim-endwise' Plug 'tpope/vim-eunuch' Plug 'tpope/vim-fugitive' Plug 'tpope/vim-repeat' +Plug 'tpope/vim-scriptease' Plug 'tpope/vim-speeddating' Plug 'tpope/vim-surround' "investigate vim-sandwich Plug 'tpope/vim-unimpaired' @@ -72,12 +74,14 @@ Plug 'kana/vim-operator-user' " staging " Check LucHermites plugins: https://github.com/LucHermitte/lh-cpp Plug 'dense-analysis/ale' " {{{2 -let g:ale_c_build_dir_names = [ 'build-Linux-x86_64' ] let g:ale_echo_msg_format = '[%linter%] %code: %%s' let g:ale_c_parse_compile_commands = 1 let g:ale_cpp_parse_compile_commands = 1 +" don't use loclist as it's being populated by ycm +" (might want to enable for other filetypes) +let g:ale_set_loclist = 0 let g:ale_cpp_gcc_options = '' -let g:ale_cpp_clang_options = '' +let g:ale_linters_ignore = { 'cpp': ['clangd', 'clangtidy', 'clang'] } Plug 'git@github.com:/ram-z/vim-orgmode', { 'branch': 'dev' } " {{{2 Plug 'vim-scripts/syntaxrange' @@ -708,6 +712,9 @@ call unite#custom#source('file_rec/async', 'sorters', 'sorter_selecta') call unite#custom#default_action('buffer', 'open') nnoremap [unite]b :Unite buffer:- +" unite-jumplist {{{3 +nnoremap [unite]j :Unite output:jumps: + " unite-menu {{{3 let g:unite_source_menu_menus = {} let g:unite_source_menu_menus.fugitive = { 'description' : 'fugitive menu'}