From 51264eab77e9bddbc9f20ccecc95623cb94f9e6e Mon Sep 17 00:00:00 2001 From: jdhao Date: Fri, 9 Jul 2021 00:41:36 +0800 Subject: [PATCH] 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. --- lua/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'}