From dd6805825c359d44a8faa036954eeb792faf9b39 Mon Sep 17 00:00:00 2001 From: Max Miliano Date: Tue, 29 Oct 2024 16:59:30 -0300 Subject: [PATCH] feat: dracula-soft termcolors --- colors/dracula-soft.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/colors/dracula-soft.lua b/colors/dracula-soft.lua index 7629779..6127b66 100644 --- a/colors/dracula-soft.lua +++ b/colors/dracula-soft.lua @@ -24,6 +24,28 @@ if config.on_colors then colors = vim.tbl_extend('force', colors, config.on_colors(colors, color)) end +local term = { + 'base04', + 'red', + 'green', + 'yellow', + 'pink', + 'purple', + 'cyan', + 'base01', + 'base01', + 'orange', + 'green', + 'yellow', + 'cyan', + 'pink', + 'green', + 'base01', +} +for index, key in ipairs(term) do + vim.g['terminal_color_' .. index - 1] = colors[key] +end + local hl = vim.api.nvim_set_hl local none = 'NONE'