diff --git a/lua/custom/plugins/line.lua b/lua/custom/plugins/line.lua index 9b89b1d6..c0f8d15f 100644 --- a/lua/custom/plugins/line.lua +++ b/lua/custom/plugins/line.lua @@ -5,7 +5,7 @@ return { opts = { options = { icons_enabled = true, - theme = 'everforest', + theme = '16color', component_separators = '|', section_separators = '', }, diff --git a/lua/custom/plugins/theme.lua b/lua/custom/plugins/theme.lua index 886f58e9..332e777f 100644 --- a/lua/custom/plugins/theme.lua +++ b/lua/custom/plugins/theme.lua @@ -1,7 +1,7 @@ return { - 'sainnhe/everforest', + 'chriskempson/base16-vim', priority = 1000, config = function() - vim.cmd.colorscheme 'everforest' + vim.cmd.colorscheme 'base16-bright' end, }