X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/b18949cc824a0e4ea937aebc32279eda5506698d..e48f84d521de72d8f39997054e57ae43f44c0d4b:/vim/vimrc diff --git a/vim/vimrc b/vim/vimrc index 0bbb3c1..7d88d12 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -46,6 +46,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 +73,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' @@ -735,7 +738,9 @@ endfunction " youcompleteme {{{2 let g:ycm_extra_conf_globlist = ['~/src/*','/mnt/data/src/*'] -let g:ycm_global_ycm_extra_conf = expand('$XDG_CONFIG_HOME/vim/ycm_extra_conf.py') +" 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 let g:ycm_complete_in_comments = 1