Fix lualine theme loading

Colors were being set before plugin loading causing lualine to not init.
This change tells lualine to init after load with the current
colorscheme.
This commit is contained in:
ViViDboarder 2021-09-18 19:49:45 -07:00
parent bdf4a23491
commit 2b920d1230
1 changed files with 4 additions and 1 deletions

View File

@ -56,7 +56,10 @@ return require('packer').startup(function()
-- UI
use "~/workspace/ez-colors.nvim/wombat"
use "hoob3rt/lualine.nvim"
use {
"hoob3rt/lualine.nvim",
config = function() require("plugins.lualine").config_lualine(vim.g.colors_name) end,
}
use "vim-scripts/wombat256.vim"
use "ishan9299/nvim-solarized-lua"
use {