vim-settings/vim/rc/plugins.rc.vim

129 lines
3.4 KiB
VimL
Raw Normal View History

" 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)
let l:f_path = fnameescape(expand('~/.vim/rc/' . a:path))
if filereadable(l:f_path)
execute 'source' . l:f_path
endif
endfunction
" }} Functions
2015-03-27 00:54:29 +00:00
2015-03-26 17:09:26 +00:00
" Navigation {{
2017-05-31 00:01:51 +00:00
Plug 'vim-scripts/file-line'
2015-03-26 17:09:26 +00:00
Plug 'tpope/vim-vinegar'
" }} Navigation
" Git {{
2016-11-15 17:25:41 +00:00
call s:smart_source_rc('plugins/fugitive')
call s:smart_source_rc('plugins/gitgutter')
" }} Git
2015-03-27 00:45:03 +00:00
" Searching {{
2018-06-13 20:19:22 +00:00
if !exists('g:gui_oni')
if !executable('fzf')
call s:smart_source_rc('plugins/ctrlp')
endif
call s:smart_source_rc('plugins/fzf')
call s:smart_source_rc('plugins/vim-grepper')
endif
" }} Searching
2015-03-26 17:09:26 +00:00
2019-10-16 16:49:04 +00:00
" TODO: Maybe replace with coc.nvim. If I'm doing a lot of development, I will
" have latest versions of vim or nvim
" Only need one fallback, maybe neocomplcache
2015-03-26 17:09:26 +00:00
" Autocomplete {{
2015-09-29 16:27:05 +00:00
call s:smart_source_rc('plugins/omnicompletion')
2018-06-13 20:19:22 +00:00
if exists('g:gui_oni')
" We'll keep Oni's autocomplete with Language Server
elseif has('nvim') && has('python3')
2015-09-29 16:27:05 +00:00
call s:smart_source_rc('plugins/deoplete')
2017-11-08 21:55:23 +00:00
elseif (has('lua') && (v:version > 703 || v:version == 703 && has('patch885')))
call s:smart_source_rc('plugins/neocomplete')
2015-03-26 17:09:26 +00:00
else
2015-06-18 16:27:57 +00:00
call s:smart_source_rc('plugins/neocomplcache')
2015-03-26 17:09:26 +00:00
end
2016-11-15 17:25:41 +00:00
" }} Autocomplete
2015-03-26 17:09:26 +00:00
" Programming {{
Plug 'tpope/vim-surround'
call s:smart_source_rc('plugins/tagbar')
call s:smart_source_rc('plugins/tcomment_vim')
2018-06-13 20:19:22 +00:00
if (v:version > 703) && !exists('g:gui_oni')
2016-05-20 23:17:33 +00:00
Plug 'ludovicchabant/vim-gutentags' " Auto generate tags files
command! TagsUpdate :GutentagsUpdate<CR>
2016-05-20 23:17:33 +00:00
end
2019-10-16 16:49:04 +00:00
" TODO: Maybe ALE. Similar reason as coc.nvim. Probably only using latest vim
" if developing seriously
if (has('nvim') || v:version >= 800)
call s:smart_source_rc('plugins/neomake')
else
call s:smart_source_rc('plugins/syntastic')
2015-03-27 00:45:03 +00:00
endif
" }}
2015-03-26 17:09:26 +00:00
" GUI {{
Plug 'gregsexton/MatchTag'
2018-06-13 20:19:22 +00:00
if !exists('g:gui_oni')
call s:smart_source_rc('plugins/airline')
endif
call s:smart_source_rc('plugins/dash')
2018-06-13 20:19:22 +00:00
if !exists('g:gui_oni')
call s:smart_source_rc('plugins/startify')
endif
" Plug 'edkolev/tmuxline.vim' " Removed because this can fail on some machines
" let g:tmuxline_powerline_separators = 0
" }} GUI
2015-03-26 17:09:26 +00:00
" Filetypes {{
Plug 'ViViDboarder/force-vim', { 'for': ['apex', 'visualforce'] }
2015-03-26 17:09:26 +00:00
Plug 'ViViDboarder/vim-forcedotcom'
Plug 'avakhov/vim-yaml'
2017-01-23 20:21:40 +00:00
Plug 'cespare/vim-toml'
2015-06-16 01:01:57 +00:00
Plug 'dag/vim-fish'
2015-03-26 17:09:26 +00:00
Plug 'dart-lang/dart-vim-plugin'
2017-05-30 21:10:55 +00:00
Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' }
2015-03-26 17:09:26 +00:00
Plug 'hsanson/vim-android'
2019-04-11 20:04:32 +00:00
Plug 'keith/swift.vim'
2015-03-26 17:09:26 +00:00
Plug 'pangloss/vim-javascript'
Plug 'pdurbin/vim-tsv'
Plug 'tfnico/vim-gradle'
2015-03-31 20:48:21 +00:00
Plug 'tmux-plugins/vim-tmux'
Plug 'udalov/kotlin-vim'
Plug 'vim-scripts/groovy.vim'
2019-04-11 20:04:32 +00:00
Plug 'leafgarland/typescript-vim'
Plug 'rust-lang/rust.vim'
2016-11-15 17:25:41 +00:00
let g:go_def_mapping_enabled = 0
let g:go_version_warning = 0
2019-04-11 20:04:32 +00:00
let g:rustfmt_autosave = 1
2015-03-27 00:45:03 +00:00
" }}
2015-03-26 17:09:26 +00:00
" Python {{
2016-11-15 17:25:41 +00:00
call s:smart_source_rc('plugins/python')
2015-03-26 17:09:26 +00:00
" }}
" if (v:version > 703)
" Plug 'Yggdroot/indentLine', { 'for': ['python', 'yaml'] }
" endif
2015-03-26 17:09:26 +00:00
" Themes {{
Plug 'altercation/vim-colors-solarized'
2017-05-31 00:01:51 +00:00
Plug 'vim-scripts/vividchalk.vim'
Plug 'vim-scripts/wombat256.vim'
2015-03-26 17:09:26 +00:00
" }}
call s:smart_source_rc('plugins/goyo-limelight') " Distraction free editing
2015-03-26 17:09:26 +00:00
" System {{
2015-06-16 01:01:57 +00:00
Plug 'tpope/vim-endwise'
2016-06-07 01:03:45 +00:00
Plug 'tpope/vim-eunuch'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-rsi' " emacs bindinds in insert
call s:smart_source_rc('plugins/vim-togglelist')
2015-03-26 17:09:26 +00:00
" }}