diff options
author | Guangxiong Lin <[email protected]> | 2022-05-10 20:42:16 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2022-05-10 20:42:16 +0800 |
commit | b49cda89947489cdf1716be251399ff6c87efabb (patch) | |
tree | 26a614898f98afe265e97eaa5c60e5b4b970a5a0 /.vim/after | |
parent | d2ed291c5f9db11e0d1b227f05464e8bb4704867 (diff) | |
download | dotfiles-b49cda89947489cdf1716be251399ff6c87efabb.tar.gz dotfiles-b49cda89947489cdf1716be251399ff6c87efabb.tar.bz2 dotfiles-b49cda89947489cdf1716be251399ff6c87efabb.zip |
Try use lightline instead of airline
Diffstat (limited to '.vim/after')
-rw-r--r-- | .vim/after/plugin/buftabline.vim | 4 | ||||
-rw-r--r-- | .vim/after/plugin/minpac.vim | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/.vim/after/plugin/buftabline.vim b/.vim/after/plugin/buftabline.vim new file mode 100644 index 0000000..cf1e682 --- /dev/null +++ b/.vim/after/plugin/buftabline.vim @@ -0,0 +1,4 @@ +let g:buftabline_show = 2 +let g:buftabline_numbers = 2 +let g:buftabline_plug_max = 0 +let g:buftabline_indicators = 1 diff --git a/.vim/after/plugin/minpac.vim b/.vim/after/plugin/minpac.vim index 555106b..e0bb859 100644 --- a/.vim/after/plugin/minpac.vim +++ b/.vim/after/plugin/minpac.vim @@ -59,8 +59,10 @@ 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', {'type': 'opt'}) - call minpac#add('https://github.com/vim-airline/vim-airline-themes.git', {'type': 'opt'}) + " 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'}) + call minpac#add('https://github.com/itchyny/lightline.vim') + call minpac#add('https://github.com/ap/vim-buftabline') " chinese input method call minpac#add('https://github.com/lilydjwg/fcitx.vim.git', {'type': 'opt'}) |