diff --git a/lua/cosmic/theme/integrated/enfocado.lua b/lua/cosmic/theme/integrated/enfocado.lua index 625cd48..ee74b52 100644 --- a/lua/cosmic/theme/integrated/enfocado.lua +++ b/lua/cosmic/theme/integrated/enfocado.lua @@ -24,23 +24,24 @@ local theme = { } local colors = { - white = theme.fg_1, + white = theme.dim_0, bg = theme.bg_2, - bg_highlight = theme.bg_2, - normal = theme.green, - insert = theme.cyan, - command = theme.orange, - visual = theme.violet, - replace = theme.br_red, + bg_highlight = theme.bg_1, + normal = theme.dim_0, + insert = theme.dim_0, + command = theme.dim_0, + visual = theme.dim_0, + replace = theme.dim_0, diffAdd = theme.green, - diffModified = theme.orange, + diffModified = theme.yellow, diffDeleted = theme.red, - trace = theme.orange, - hint = theme.cyan, - info = theme.green, - error = theme.red, - warn = theme.orange, - floatBorder = theme.blue, - selection_caret = theme.blue, + trace = theme.br_orange, + hint = theme.br_blue, + info = theme.br_yellow, + error = theme.br_red, + warn = theme.br_orange, + floatBorder = theme.cyan, + selection_caret = theme.cyan, + notify_bg = theme.bg_1 } return colors diff --git a/lua/cosmic/theme/plugins.lua b/lua/cosmic/theme/plugins.lua index 2f66112..aa07940 100644 --- a/lua/cosmic/theme/plugins.lua +++ b/lua/cosmic/theme/plugins.lua @@ -108,7 +108,8 @@ function M.init(use, config) 'wuelnerdotexe/vim-enfocado', as = 'enfocado', config = function() - vim.cmd('color enfocado') + vim.g.enfocado_style = 'nature' + vim.cmd('autocmd VimEnter * ++nested colorscheme enfocado') end, disable = config.theme ~= 'enfocado', })