]> git.rmz.io Git - dotfiles.git/blobdiff - vim/vimrc
mutt: fix F macro to not write message to home
[dotfiles.git] / vim / vimrc
index 9b09203b9de0dcd095b993f0c50d5cb19cf544b0..c8829a325f8e97f4a125c721c1590e1a906511ed 100644 (file)
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -7,6 +7,9 @@
 set runtimepath ^=$XDG_CONFIG_HOME/vim
 set runtimepath +=$XDG_CONFIG_HOME/vim/after
 
+" force python3
+if has('python3') | endif
+
 " plugins {{{1
 " remove all autocommands
 autocmd!
@@ -17,6 +20,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'
@@ -30,9 +34,6 @@ Plug 'kshenoy/vim-signature'
 Plug 'majutsushi/tagbar'
 Plug 'octol/vim-cpp-enhanced-highlight'
 Plug 'raimondi/delimitmate'
-Plug 'ram-z/vim-clang-format', { 'branch': 'fix-undo' }
-" fix some issue with vim-clang-format not finding .clang-format
-let g:clang_format#detect_style_file = 1
 Plug 'vimwiki/vimwiki', { 'branch': 'dev' }
 " Plug 'scrooloose/syntastic'
 Plug 'sgeb/vim-diff-fold'
@@ -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'
@@ -78,6 +80,7 @@ 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_linters_ignore = { 'cpp': ['clangd', 'clangtidy', 'clang'] }
 
 Plug 'git@github.com:/ram-z/vim-orgmode', { 'branch': 'dev' } " {{{2
@@ -709,6 +712,9 @@ call unite#custom#source('file_rec/async', 'sorters', 'sorter_selecta')
 call unite#custom#default_action('buffer', 'open')
 nnoremap <silent> [unite]b :<C-u>Unite buffer:-<CR>
 
+" unite-jumplist {{{3
+nnoremap <silent> [unite]j :<C-u>Unite output:jumps:<CR>
+
 " unite-menu {{{3
 let g:unite_source_menu_menus = {}
 let g:unite_source_menu_menus.fugitive = { 'description' : 'fugitive menu'}
@@ -735,9 +741,6 @@ function! YRRunAfterMaps()
 endfunction
 
 " youcompleteme {{{2
-let g:ycm_extra_conf_globlist = ['~/src/*','/mnt/data/src/*']
-" ycm-clangd requires you to symlink the compile_db to the root of the project
-" let g:ycm_global_ycm_extra_conf = expand('$XDG_CONFIG_HOME/vim/ycm_extra_conf.py')
 let g:ycm_clangd_binary_path = 'clangd'   " use clangd in path
 let g:ycm_extra_conf_vim_data = ['getcwd()']
 let g:ycm_add_preview_to_completeopt = 1