mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-07-09 17:04:27 +02:00
add:config tokyonight theme
This commit is contained in:
parent
ad93d71272
commit
d7df5843dc
3 changed files with 12 additions and 9 deletions
|
@ -12,7 +12,7 @@
|
|||
-- catppuccin, catppuccin-latte, catppuccin-frappe, catppuccin-macchiato, catppuccin-mocha
|
||||
-- dracula
|
||||
-- nightfox, dayfox, dawnfox, duskfox, nordfox, terafox, carbonfox
|
||||
vim.g.pcode_colorscheme = "dracula"
|
||||
vim.g.pcode_colorscheme = "tokyonight"
|
||||
|
||||
-- custom transparent mode
|
||||
-- only support
|
||||
|
|
|
@ -40,11 +40,11 @@ return {
|
|||
--- function will be called with a ColorScheme table
|
||||
-- @param colors ColorScheme
|
||||
on_colors = function(colors)
|
||||
colors.bg_statusline = colors.none
|
||||
colors.bg_sidebar = colors.none
|
||||
colors.bg = colors.none
|
||||
colors.bg_dark = colors.none
|
||||
colors.terminal_black = colors.none
|
||||
colors.bg_statusline = colors.bg
|
||||
colors.bg_sidebar = colors.bg
|
||||
colors.bg = colors.bg
|
||||
colors.bg_dark = colors.bg
|
||||
colors.terminal_black = colors.bg
|
||||
end,
|
||||
|
||||
--- You can override specific highlights to use other groups or a hex color
|
||||
|
@ -59,7 +59,11 @@ return {
|
|||
highlights.Underlined = {
|
||||
underline = false,
|
||||
}
|
||||
highlights.BufferLineFill = { bg = colors.none }
|
||||
highlights.BufferLineFill = { bg = colors.bg }
|
||||
highlights.NvimTreeWinSeparator = {
|
||||
fg = colors.border,
|
||||
bg = colors.bg_sidebar,
|
||||
}
|
||||
end,
|
||||
})
|
||||
end,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue