astro-nvim-v3 - change color schemes

This commit is contained in:
huyjaky
2024-09-26 18:47:45 +07:00
parent 66913cebc8
commit e589e54fa3
5 changed files with 27 additions and 25 deletions

View File

@@ -73,19 +73,19 @@ return {
integrations = { rainbow_delimiters = true },
},
},
{
"loctvl842/monokai-pro.nvim",
opts = {
terminal_colors = true,
devicons = true, -- highlight the icons of `nvim-web-devicons`
filter = "pro", -- classic | octagon | pro | machine | ristretto | spectrum
plugins = {
indent_blankline = {
context_highlight = "pro", -- default | pro
context_start_underline = false,
{
"loctvl842/monokai-pro.nvim",
opts = {
terminal_colors = true,
devicons = true, -- highlight the icons of `nvim-web-devicons`
filter = "pro", -- classic | octagon | pro | machine | ristretto | spectrum
plugins = {
indent_blankline = {
context_highlight = "pro", -- default | pro
context_start_underline = false,
},
},
},
},
}
}

View File

@@ -25,6 +25,7 @@ return {
hl.nav_fg = "black"
hl.nav_bg = get_hlgroup("String").fg
hl.nav_icon_bg = hl.nav_bg
hl.normal = "#ade8f4"
return hl
end,
attributes = {

View File

@@ -27,11 +27,11 @@ return function(opts)
},
-- table: additional groups that should be cleared
extra_groups = {
"NormalFloat",
"NvimTreeNormal",
"NeoTreeNormal",
"NeoTreeFloatBorder",
"NeoTreeNormalNC",
-- "NormalFloat",
-- "NvimTreeNormal",
-- "NeoTreeNormal",
-- "NeoTreeFloatBorder",
-- "NeoTreeNormalNC",
},
-- table: groups you don't want to clear
exclude_groups = {},

View File

@@ -14,6 +14,7 @@ return {
-- signs = false, -- configure signs for some keywords individually
},
TODO = { icon = "", color = "info" },
GOAL = { icon = "", color = "info" },
HACK = { icon = "", color = "warning" },
WARN = { icon = "", color = "warning", alt = { "WARNING", "XXX" } },
PERF = { icon = "", alt = { "OPTIM", "PERFORMANCE", "OPTIMIZE" } },