diff options
| author | jdhao <jdhao@hotmail.com> | 2021-07-09 00:41:36 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-07-09 00:41:36 +0800 |
| commit | 51264eab77e9bddbc9f20ccecc95623cb94f9e6e (patch) | |
| tree | 55e3d19f958e161f35e4f89fb855e88a6f0a75c7 /lua/plugins.lua | |
| parent | 11644a3603350e78d33e22ca3b448ca43d1391bc (diff) | |
Correct order of vim-airline and vim-airline-themes.
No need to use event for vim-airline if we want to load it after
vim-airline-themes. See also https://github.com/wbthomason/packer.nvim/issues/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 ad86c6c..393c88a 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -94,7 +94,7 @@ require('packer').startup( -- colorful status line and theme use {'vim-airline/vim-airline-themes', event = 'VimEnter'} - use {'vim-airline/vim-airline', event = 'VimEnter', after = 'vim-airline-themes'} + use {'vim-airline/vim-airline', after = 'vim-airline-themes'} -- fancy start screen use {'mhinz/vim-startify', event = 'VimEnter'} |
