diff options
| author | jdhao <jdhao@hotmail.com> | 2021-07-08 23:51:16 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-07-08 23:51:16 +0800 |
| commit | 11644a3603350e78d33e22ca3b448ca43d1391bc (patch) | |
| tree | 64af8489736915810be53619f9cf2bdffa031af3 /lua/plugins.lua | |
| parent | 3b25260be0a713ed260a33cc5d158a2da60afafb (diff) | |
Change order of vim-airline and vim-airline-themes
It seems the order matters if we want to load vim-airline after
vim-airlinethemes. See also packer.nvim#461.
Diffstat (limited to 'lua/plugins.lua')
| -rw-r--r-- | lua/plugins.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 25cccdb..ad86c6c 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -93,8 +93,8 @@ require('packer').startup( use 'shaunsingh/nord.nvim' -- colorful status line and theme - use {'vim-airline/vim-airline', event = 'VimEnter', after = 'vim-airline-themes'} use {'vim-airline/vim-airline-themes', event = 'VimEnter'} + use {'vim-airline/vim-airline', event = 'VimEnter', after = 'vim-airline-themes'} -- fancy start screen use {'mhinz/vim-startify', event = 'VimEnter'} |
