aboutsummaryrefslogtreecommitdiff
path: root/.vim
diff options
context:
space:
mode:
Diffstat (limited to '.vim')
-rw-r--r--.vim/after/plugin/minpac.vim37
1 files changed, 21 insertions, 16 deletions
diff --git a/.vim/after/plugin/minpac.vim b/.vim/after/plugin/minpac.vim
index f1e0c92..a4a83fc 100644
--- a/.vim/after/plugin/minpac.vim
+++ b/.vim/after/plugin/minpac.vim
@@ -17,40 +17,40 @@ function! InitMinpac() abort
call minpac#add('https://github.com/ycm-core/YouCompleteMe',
\ {'do': function('s:build_ycm')})
- call minpac#add('https://github.com/tpope/vim-commentary')
-
+ call minpac#add('https://github.com/dense-analysis/ale.git')
call minpac#add('https://github.com/SirVer/ultisnips.git')
call minpac#add('https://github.com/honza/vim-snippets')
- call minpac#add('https://github.com/mcchrish/nnn.vim.git')
- call minpac#add('https://github.com/junegunn/fzf.git')
- call minpac#add('https://github.com/junegunn/fzf.vim.git', {'type': 'opt'})
- call minpac#add('https://github.com/mbbill/undotree.git')
- call minpac#add('https://github.com/dense-analysis/ale.git')
- call minpac#add('https://github.com/tpope/vim-eunuch.git')
- call minpac#add('https://github.com/tpope/vim-sleuth.git')
- call minpac#add('https://github.com/godlygeek/tabular.git')
- call minpac#add('https://github.com/airblade/vim-rooter.git')
call minpac#add('https://github.com/ludovicchabant/vim-gutentags.git')
call minpac#add('https://github.com/easymotion/vim-easymotion.git')
+ call minpac#add('https://github.com/airblade/vim-rooter.git')
+ call minpac#add('https://github.com/mbbill/undotree.git')
+ call minpac#add('https://github.com/godlygeek/tabular.git')
call minpac#add('https://github.com/editorconfig/editorconfig-vim.git')
- call minpac#add('https://github.com/habamax/vim-godot.git')
- call minpac#add('https://github.com/ledger/vim-ledger.git')
- call minpac#add('https://github.com/mhinz/vim-signify.git')
+ call minpac#add('https://github.com/dhruvasagar/vim-table-mode.git')
call minpac#add('https://github.com/junegunn/vim-easy-align')
+
+ call minpac#add('https://github.com/tpope/vim-commentary')
+ call minpac#add('https://github.com/tpope/vim-eunuch.git')
+ call minpac#add('https://github.com/tpope/vim-sleuth.git')
call minpac#add('https://github.com/tpope/vim-unimpaired.git')
call minpac#add('https://github.com/tpope/vim-surround.git')
call minpac#add('https://github.com/tpope/vim-rsi.git')
call minpac#add('https://github.com/tpope/vim-dispatch.git')
- call minpac#add('https://github.com/axvr/org.vim.git')
- call minpac#add('https://github.com/dhruvasagar/vim-table-mode.git')
+ " external
+ call minpac#add('https://github.com/junegunn/fzf.git')
+ call minpac#add('https://github.com/junegunn/fzf.vim.git', {'type': 'opt'})
+ call minpac#add('https://github.com/mcchrish/nnn.vim.git')
+
+ " terminal
call minpac#add('https://github.com/voldikss/vim-floaterm.git')
" git
call minpac#add('https://github.com/tpope/vim-fugitive.git')
call minpac#add('https://github.com/rbong/vim-flog.git')
call minpac#add('https://github.com/iberianpig/tig-explorer.vim')
+ call minpac#add('https://github.com/mhinz/vim-signify.git')
call minpac#add('https://github.com/jpalardy/vim-slime', {'type': 'opt'})
" appearance
@@ -62,6 +62,11 @@ function! InitMinpac() abort
call minpac#add('https://github.com/lilydjwg/fcitx.vim.git', {'type': 'opt'})
call minpac#add('https://github.com/ybian/smartim.git', {'type': 'opt'})
+ " language specific
+ call minpac#add('https://github.com/habamax/vim-godot.git')
+ call minpac#add('https://github.com/ledger/vim-ledger.git')
+ call minpac#add('https://github.com/axvr/org.vim.git')
+
let g:minpac_initialized = 1
endfunction