Skip to content

Commit

Permalink
feat: dracula-soft termcolors
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmx03 committed Oct 29, 2024
1 parent 72ab195 commit dd68058
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions colors/dracula-soft.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down

0 comments on commit dd68058

Please sign in to comment.