X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/4fe394d230d60645042ea83b68d5f996430aca20..04cc843be83ad13f34b0ddc0daea625f2a5d7716:/vim/vimrc diff --git a/vim/vimrc b/vim/vimrc index 5ca33ac..7c12179 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -30,12 +30,14 @@ 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' } -Plug 'ram-z/vimwiki', { 'branch': 'no_override_map' } -Plug 'scrooloose/syntastic' +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' Plug 'shougo/unite.vim' -Plug 'shougo/vimproc.vim' +Plug 'shougo/vimproc.vim', {'do': 'make'} Plug 'sjl/gundo.vim' Plug 'thinca/vim-qfreplace' Plug 'tomtom/tcomment_vim' @@ -47,13 +49,14 @@ Plug 'tpope/vim-repeat' Plug 'tpope/vim-surround' "investigate vim-sandwich Plug 'tpope/vim-unimpaired' Plug 'tweekmonster/spellrotate.vim' -Plug 'valloric/youcompleteme', { 'do': './install.py --clang-completer' } +" Plug 'valloric/youcompleteme', { 'do': './install.py --clang-completer' } Plug 'vim-scripts/mediawiki.vim' Plug 'vim-scripts/replacewithregister' Plug 'vim-scripts/yankring.vim' +Plug 'wincent/loupe' " colorschemes -Plug 'flazz/vim-colorschemes' +Plug 'morhetz/gruvbox' " snippets Plug 'sirver/ultisnips' @@ -66,16 +69,28 @@ Plug 'sgur/vim-textobj-parameter' Plug 'kana/vim-operator-user' " staging -" find an alternative (latex-box? Automatic Latex Plugin?) -Plug 'vim-latex/vim-latex' -Plug 'alx741/vinfo' -" needs editing colorscheme -" Plug 'jeaye/color_coded' " Check LucHermites plugins: https://github.com/LucHermitte/lh-cpp -Plug 'wincent/loupe' - +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 +let g:ale_cpp_gcc_options = '' +let g:ale_cpp_clang_options = '' + +Plug 'shougo/deoplete.nvim' " {{{2 +Plug 'roxma/nvim-yarp' +Plug 'roxma/vim-hug-neovim-rpc' +let g:deoplete#enable_at_startup = 1 + +"}}}2 call plug#end() +call deoplete#custom#option('sources', { + \ '_': ['ale'], + \}) +call deoplete#custom#source('ale', 'matchers', ['matchers_full_fuzzy']) + filetype plugin indent on " colorscheme {{{1 @@ -84,6 +99,8 @@ set background=dark let g:gruvbox_contrast_dark = 'hard' let g:gruvbox_contrast_light = 'soft' colorscheme gruvbox +" override the background to be black +highligh Normal ctermbg=None " options {{{1 " moving around, searching and patterns {{{2 @@ -110,7 +127,7 @@ set list " show chars defined in 'listchars' set listchars=tab:❭\ " list of strings used for list mode set listchars+=extends:❯,precedes:❮ " Only shown when not in insert mode -au InsertLeave * :set listchars+=trail:· +set listchars+=trail:· augroup trailing au! au InsertEnter * :set listchars-=trail:· @@ -338,8 +355,21 @@ augroup END map " make -nnoremap r :make! -nnoremap :make! +function! Make() + let l:make_dir = "" + if exists("b:make_dir") + let l:make_dir = "-C ".b:make_dir + elseif exists("g:make_dir") + let l:make_dir = "-C ".g:make_dir + endif + + let l:make_targets = "" + if exists("g:make_targets") + let l:make_targets = g:make_targets + endif + execute "make! ".l:make_dir." ".l:make_targets +endf +nnoremap r :call Make() " unhighlight search nnoremap / :silent nohl @@ -417,8 +447,8 @@ cnoremap cnoremap " proper movement when lines are wrapped -noremap j (v:count == 0 ? 'gj' : 'j') -noremap k (v:count == 0 ? 'gk' : 'k') +noremap j (v:count == 0 ? 'gj' : 'j') +noremap k (v:count == 0 ? 'gk' : 'k') " disable arrows noremap @@ -534,6 +564,11 @@ nnoremap gc :Gcommit -v nnoremap ga :Gwrite nnoremap gb :Gblame +augroup fugitive_gstatus + au! + autocmd BufWinEnter */.git/index resize 16 +augroup end + " Gundo {{{2 nnoremap :GundoToggle @@ -590,6 +625,8 @@ let g:syntastic_style_warning_symbol='S' let g:syntastic_always_populate_loc_list=1 nmap y :SyntasticCheck +let g:syntastic_cpp_clang_tidy_post_args = "-p build*" + if ! &diff let g:syntastic_check_on_open=1 endif @@ -725,11 +762,6 @@ nnoremap tu :GTestRunUnderCursor " vim-json {{{2 let g:vim_json_syntax_conceal = 0 -" vim-latex {{{2 -let g:tex_flavor='latex' -let g:Tex_DefaultTargetFormat='pdf' -let g:Tex_MultipleCompileFormats='pdf' - " vim-sneak {{{2 let g:sneak#streak = 1 let g:sneak#target_labels = "aoeuisnthdpylrcgfqjkxzmwvz" " dvorak