mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-17 22:16:26 +00:00
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:
parent
bdf4a23491
commit
2b920d1230
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user