diff options
author | Guangxiong Lin <[email protected]> | 2022-05-10 00:00:28 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2022-05-10 00:00:28 +0800 |
commit | d2ed291c5f9db11e0d1b227f05464e8bb4704867 (patch) | |
tree | 2e34bae45e9d2731dee608ef69c8431b50562944 /.vim/after/plugin/minpac.vim | |
parent | 125e4ed168252fa6b52a33146e4107b77a4817c6 (diff) | |
download | dotfiles-d2ed291c5f9db11e0d1b227f05464e8bb4704867.tar.gz dotfiles-d2ed291c5f9db11e0d1b227f05464e8bb4704867.tar.bz2 dotfiles-d2ed291c5f9db11e0d1b227f05464e8bb4704867.zip |
Reduce the extensions loaded by airline (vim)
Diffstat (limited to '.vim/after/plugin/minpac.vim')
-rw-r--r-- | .vim/after/plugin/minpac.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.vim/after/plugin/minpac.vim b/.vim/after/plugin/minpac.vim index 2033a82..555106b 100644 --- a/.vim/after/plugin/minpac.vim +++ b/.vim/after/plugin/minpac.vim @@ -59,8 +59,8 @@ function! InitMinpac() abort " appearance call minpac#add('https://github.com/joshdick/onedark.vim.git', {'type': 'opt'}) - call minpac#add('https://github.com/vim-airline/vim-airline.git') - call minpac#add('https://github.com/vim-airline/vim-airline-themes.git') + call minpac#add('https://github.com/vim-airline/vim-airline.git', {'type': 'opt'}) + call minpac#add('https://github.com/vim-airline/vim-airline-themes.git', {'type': 'opt'}) " chinese input method call minpac#add('https://github.com/lilydjwg/fcitx.vim.git', {'type': 'opt'}) |