From 478368f03a2b2ebb30468ba9e5868d892e598173 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wuelner=20Mart=C3=ADnez?= Date: Mon, 17 Jan 2022 15:13:11 -0600 Subject: [PATCH] feat(enfocado): added more enfocado settings (#41) * fix(enfocado): improvements are made to the configs * fix(enfocado): some colors of enfocado are updated * feat(enfocado): enfocado on-demand plugins are listed --- lua/cosmic/theme/integrated/enfocado.lua | 11 +++++------ lua/cosmic/theme/plugins.lua | 14 ++++++++++++++ 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/lua/cosmic/theme/integrated/enfocado.lua b/lua/cosmic/theme/integrated/enfocado.lua index ee74b52..7c55af9 100644 --- a/lua/cosmic/theme/integrated/enfocado.lua +++ b/lua/cosmic/theme/integrated/enfocado.lua @@ -25,8 +25,8 @@ local theme = { local colors = { white = theme.dim_0, - bg = theme.bg_2, - bg_highlight = theme.bg_1, + bg = theme.bg_1, + bg_highlight = theme.bg_2, normal = theme.dim_0, insert = theme.dim_0, command = theme.dim_0, @@ -35,13 +35,12 @@ local colors = { diffAdd = theme.green, diffModified = theme.yellow, diffDeleted = theme.red, - trace = theme.br_orange, + trace = theme.br_magenta, 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 + floatBorder = theme.fg_0, + selection_caret = theme.fg_0, } return colors diff --git a/lua/cosmic/theme/plugins.lua b/lua/cosmic/theme/plugins.lua index 978a52c..7eaad89 100644 --- a/lua/cosmic/theme/plugins.lua +++ b/lua/cosmic/theme/plugins.lua @@ -110,6 +110,20 @@ function M.init(use, config) as = 'enfocado', config = function() vim.g.enfocado_style = 'nature' + vim.g.enfocado_plugins = { + 'cmp', + 'dashboard', + 'floaterm', + 'gitsigns', + 'lsp', + 'lsp-installer', + 'notify', + 'packer', + 'telescope', + 'todo-comments', + 'tree', + 'treesitter' + } vim.cmd('autocmd VimEnter * ++nested colorscheme enfocado') end, disable = config.theme ~= 'enfocado',