add new colors

This commit is contained in:
xfy
2025-02-27 08:58:52 +08:00
parent e764e95237
commit 28ead0915e
4 changed files with 232 additions and 12 deletions

View File

@ -108,16 +108,16 @@ return {
"nvim-tree/nvim-web-devicons",
lazy = true,
init = function()
local lackluster = require("lackluster")
require("nvim-web-devicons").setup({
color_icons = false,
override = {
["default_icon"] = {
color = lackluster.color.gray4,
name = "Default",
},
},
})
-- local lackluster = require("lackluster")
-- require("nvim-web-devicons").setup({
-- color_icons = false,
-- override = {
-- ["default_icon"] = {
-- color = lackluster.color.gray4,
-- name = "Default",
-- },
-- },
-- })
end,
},
{
@ -126,4 +126,37 @@ return {
-- priority = 1000,
-- init = init_lackluster,
},
{
"wheat-thin-wiens/rei.nvim",
priority = 1000,
lazy = false,
config = function()
require("rei").setup({
styles = {
comments = { italic = true },
keywords = {},
identifiers = {},
functions = { italic = true, bold = true },
variables = {},
booleans = {},
loops = { italic = true },
},
integrations = {
gitsigns = true,
indent_blankline = true,
lsp = true,
mason = true,
neotree = true,
render_markdown = true,
telescope = true, -- 'borderless' theme also available, leave as true for default theme
treesitter = true,
which_key = true,
},
transparency = true, -- Enables / Disables background transparency
terminal_colors = true,
highlight_overrides = {},
})
-- vim.cmd.colorscheme("rei")
end,
},
}