2015-08-13 22:28:46 +00:00
|
|
|
" Functions {{
|
2015-03-27 00:54:29 +00:00
|
|
|
function! s:smart_source_rc(name)
|
|
|
|
call s:source_rc(a:name . '.rc.vim')
|
|
|
|
call s:source_rc(a:name . '.local.rc.vim')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:source_rc(path)
|
2020-02-22 01:09:00 +00:00
|
|
|
let l:f_path = fnameescape(expand('~/.vim/rc/' . a:path))
|
|
|
|
if filereadable(l:f_path)
|
|
|
|
execute 'source' . l:f_path
|
|
|
|
endif
|
2015-03-27 00:54:29 +00:00
|
|
|
endfunction
|
2015-08-13 22:28:46 +00:00
|
|
|
" }} Functions
|
2015-03-27 00:54:29 +00:00
|
|
|
|
2020-02-22 01:09:00 +00:00
|
|
|
" General
|
|
|
|
Plug 'godlygeek/tabular' " Tabular spacing
|
|
|
|
Plug 'gregsexton/MatchTag'
|
|
|
|
Plug 'tpope/vim-endwise'
|
|
|
|
Plug 'tpope/vim-eunuch'
|
|
|
|
Plug 'tpope/vim-repeat'
|
2021-08-24 16:15:07 +00:00
|
|
|
Plug 'tpope/vim-rsi'
|
2020-02-22 01:09:00 +00:00
|
|
|
Plug 'tpope/vim-surround'
|
2015-03-26 17:09:26 +00:00
|
|
|
Plug 'tpope/vim-vinegar'
|
2020-02-22 01:09:00 +00:00
|
|
|
Plug 'vim-scripts/file-line'
|
2021-08-24 16:15:07 +00:00
|
|
|
call s:smart_source_rc('plugins/airline')
|
|
|
|
call s:smart_source_rc('plugins/startify')
|
|
|
|
call s:smart_source_rc('plugins/goyo-limelight')
|
2020-02-22 01:09:00 +00:00
|
|
|
Plug 'milkypostman/vim-togglelist'
|
|
|
|
nnoremap <silent> <F6> :call ToggleQuickfixList()<CR>
|
|
|
|
nnoremap <silent> <F7> :call ToggleLocationList()<CR>
|
|
|
|
" Plug 'edkolev/tmuxline.vim' " Removed because this can fail on some machines
|
|
|
|
" let g:tmuxline_powerline_separators = 0
|
2015-03-27 00:45:03 +00:00
|
|
|
|
2020-02-22 01:09:00 +00:00
|
|
|
" Searching
|
2021-08-24 16:15:07 +00:00
|
|
|
if !executable('fzf')
|
|
|
|
call s:smart_source_rc('plugins/ctrlp')
|
2017-11-14 03:03:12 +00:00
|
|
|
endif
|
2021-08-24 16:15:07 +00:00
|
|
|
call s:smart_source_rc('plugins/fzf')
|
|
|
|
call s:smart_source_rc('plugins/vim-grepper')
|
2015-03-26 17:09:26 +00:00
|
|
|
|
2020-02-22 01:09:00 +00:00
|
|
|
" Git / Version control
|
|
|
|
call s:smart_source_rc('plugins/fugitive')
|
|
|
|
call s:smart_source_rc('plugins/gitgutter')
|
|
|
|
|
|
|
|
" Programming
|
2019-10-24 19:40:10 +00:00
|
|
|
Plug 'FooSoft/vim-argwrap'
|
2020-02-22 01:09:00 +00:00
|
|
|
nnoremap <silent> <leader>a :ArgWrap<CR>
|
2019-10-24 19:40:10 +00:00
|
|
|
Plug 'tomtom/tcomment_vim', { 'on': ['TComment', 'TCommentBlock'] }
|
|
|
|
nnoremap // :TComment<CR>
|
|
|
|
vnoremap // :TCommentBlock<CR>
|
2020-02-22 01:09:00 +00:00
|
|
|
Plug 'rizzatti/dash.vim', { 'on': 'DashSearch' }
|
|
|
|
nmap <silent> <leader>d <Plug>DashSearch
|
|
|
|
let g:dash_map = { 'apex' : 'apex', 'visualforce' : 'vf' }
|
2019-10-24 19:40:10 +00:00
|
|
|
|
2020-02-22 01:07:50 +00:00
|
|
|
" IDE stuff
|
|
|
|
|
2021-08-24 16:15:07 +00:00
|
|
|
" let l:is_vim8 = v:version >= 8
|
|
|
|
" let l:is_nvim = has('nvim')
|
|
|
|
" let l:is_nvim_5 = has('nvim-0.5')
|
|
|
|
|
2020-02-22 01:07:50 +00:00
|
|
|
" Lint and completion
|
2021-08-24 16:15:07 +00:00
|
|
|
if has('nvim') || v:version >= 800
|
|
|
|
" let g:ale_completion_enabled = 1
|
2021-04-30 18:27:39 +00:00
|
|
|
call s:smart_source_rc('plugins/ale')
|
2021-08-24 16:15:07 +00:00
|
|
|
set omnifunc=ale#completion#OmniFunc
|
|
|
|
|
|
|
|
function! s:check_back_space() abort
|
|
|
|
let col = col('.') - 1
|
|
|
|
return !col || getline('.')[col - 1] =~? '\s'
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" " Enable asyncomplete
|
|
|
|
" Plug 'prabirshrestha/asyncomplete.vim'
|
|
|
|
" " Add ALE to asyncomplete
|
|
|
|
" augroup acomp_setup
|
|
|
|
" au User asyncomplete_setup call asyncomplete#register_source(asyncomplete#sources#ale#get_source_options({
|
|
|
|
" \ 'priority': 10,
|
|
|
|
" \ }))
|
|
|
|
" au CompleteDone * if pumvisible() == 0 | pclose | endif
|
|
|
|
" augroup end
|
|
|
|
"
|
|
|
|
" let g:asyncomplete_auto_popup = 0
|
|
|
|
" " Make asyncomplete manually triggered
|
|
|
|
" inoremap <silent><expr> <C-Space>
|
|
|
|
" \ pumvisible() ? "\<C-n>" :
|
|
|
|
" \ <SID>check_back_space() ? "\<TAB>" :
|
|
|
|
" \ asyncomplete#force_refresh()
|
|
|
|
"
|
|
|
|
|
|
|
|
set completeopt+=preview
|
|
|
|
imap <silent> <C-Space> <Plug>(ale_complete)
|
|
|
|
" inoremap <silent><expr> <C-Space>
|
|
|
|
" \ pumvisible() ? "\<C-n>" :
|
|
|
|
" \ <SID>check_back_space() ? "\<TAB>" :
|
|
|
|
" \ <Plug>(ale_complete)
|
2015-03-26 17:09:26 +00:00
|
|
|
end
|
|
|
|
|
2020-02-22 01:07:50 +00:00
|
|
|
" Programming Tag navigation
|
2021-08-24 16:15:07 +00:00
|
|
|
call s:smart_source_rc('plugins/tagbar')
|
|
|
|
Plug 'ludovicchabant/vim-gutentags'
|
|
|
|
command! TagsUpdate :GutentagsUpdate
|
2015-03-26 17:09:26 +00:00
|
|
|
|
2020-02-22 01:09:00 +00:00
|
|
|
" Filetype configuration
|
2020-02-05 18:17:32 +00:00
|
|
|
|
|
|
|
" Languages with custom configuration
|
2021-08-24 16:14:01 +00:00
|
|
|
" Custom Go
|
2020-02-05 18:17:32 +00:00
|
|
|
Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' }
|
|
|
|
" Custom rust
|
2019-04-11 20:04:32 +00:00
|
|
|
let g:rustfmt_autosave = 1
|
2020-02-05 18:17:32 +00:00
|
|
|
Plug 'rust-lang/rust.vim'
|
|
|
|
" Lots of custom python
|
2016-11-15 17:25:41 +00:00
|
|
|
call s:smart_source_rc('plugins/python')
|
2021-08-24 16:14:01 +00:00
|
|
|
" Disable polyglot for languages with more robust plugins
|
2020-02-22 01:11:08 +00:00
|
|
|
let g:polyglot_disabled = ['go', 'rust']
|
2020-02-05 18:17:32 +00:00
|
|
|
Plug 'sheerun/vim-polyglot'
|
2021-01-13 17:22:06 +00:00
|
|
|
" Custom rule for ansible playbook detection
|
|
|
|
augroup ansible_playbook
|
|
|
|
au BufRead,BufNewFile */playbooks/*.yml set filetype=yaml.ansible
|
|
|
|
au BufRead,BufNewFile */playbooks/*.yaml set filetype=yaml.ansible
|
|
|
|
augroup end
|
2020-02-05 18:17:32 +00:00
|
|
|
|
|
|
|
" Languages not in polyglot
|
|
|
|
Plug 'ViViDboarder/force-vim', { 'for': ['apex', 'visualforce'] }
|
|
|
|
Plug 'ViViDboarder/vim-forcedotcom'
|
|
|
|
Plug 'hsanson/vim-android'
|
|
|
|
Plug 'pdurbin/vim-tsv'
|
2015-03-26 17:09:26 +00:00
|
|
|
" }}
|
|
|
|
|
2020-02-22 01:09:00 +00:00
|
|
|
" Themes
|
2015-03-26 17:09:26 +00:00
|
|
|
Plug 'altercation/vim-colors-solarized'
|
2017-05-31 00:01:51 +00:00
|
|
|
Plug 'vim-scripts/wombat256.vim'
|
2021-08-24 16:15:25 +00:00
|
|
|
|
|
|
|
" Saving and loading specific versions of plugins
|
|
|
|
call s:source_rc('plug-snapshot.rc.vim')
|
|
|
|
function! s:save_snapshot()
|
|
|
|
let l:f_path = fnameescape(expand('~/.vim/rc/plug-snapshot.rc.vim'))
|
|
|
|
execute 'PlugSnapshot!' . l:f_path
|
|
|
|
endfunction
|
|
|
|
command! SavePlugSnapshot call s:save_snapshot()
|