From 6c68df5633d7c5bd20bf6881b449ddbde70eb8fe Mon Sep 17 00:00:00 2001 From: mjhika <1zzt6ovh@mojica.anonaddy.com> Date: Sun, 28 Jan 2024 15:04:18 -0500 Subject: [PATCH] change theme --- lua/custom/plugins/line.lua | 2 +- lua/custom/plugins/theme.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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, }