1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

change vim-airline and vim-airlinethemes load condition

vim-airline needs to be loaded after vim-signify, otherwise the git
signs won't show on the statusline.
This commit is contained in:
jdhao 2021-10-22 22:52:33 +08:00
parent a0a4db076e
commit 553ff50303

View File

@ -121,8 +121,8 @@ require("packer").startup({
-- use 'airblade/vim-gitgutter'
-- colorful status line and theme
use({"vim-airline/vim-airline-themes", opt = true, setup = [[vim.cmd 'packadd vim-airline-themes']]})
use({"vim-airline/vim-airline", opt = true, setup = [[vim.cmd 'packadd vim-airline']]})
use({"vim-airline/vim-airline-themes", after = 'vim-signify',})
use({"vim-airline/vim-airline", after = 'vim-airline-themes',})
use({ "akinsho/bufferline.nvim", event = "VimEnter", config = [[require('config.bufferline')]] })