mirror of
https://github.com/DefectingCat/nvim
synced 2025-07-15 16:51:33 +00:00
update colors
This commit is contained in:
@ -80,7 +80,7 @@ vim.api.nvim_set_hl(0, "Comment", { cterm = { italic = true }, fg = 7434609, ita
|
||||
vim.api.nvim_set_hl(0, "Conceal", { fg = 3094595 })
|
||||
vim.api.nvim_set_hl(0, "Conditional", { cterm = { italic = true }, fg = 9550057, italic = true })
|
||||
vim.api.nvim_set_hl(0, "Constant", { fg = 16618641 })
|
||||
vim.api.nvim_set_hl(0, "CurSearch", { bg = 10337488, fg = 5595507 })
|
||||
vim.api.nvim_set_hl(0, "CurSearch", { bg = 9550057, fg = 923427 })
|
||||
vim.api.nvim_set_hl(0, "Cursor", { bg = 13487565, fg = 5595507 })
|
||||
vim.api.nvim_set_hl(0, "CursorIM", { bg = 13487565, fg = 5595507 })
|
||||
vim.api.nvim_set_hl(0, "CursorLine", { bg = 3094595 })
|
||||
@ -115,7 +115,7 @@ vim.api.nvim_set_hl(
|
||||
{ bold = true, cterm = { bold = true, italic = true }, fg = 12168934, italic = true }
|
||||
)
|
||||
vim.api.nvim_set_hl(0, "Identifier", { fg = 13487565 })
|
||||
vim.api.nvim_set_hl(0, "IncSearch", { bg = 10337488, fg = 5595507 })
|
||||
vim.api.nvim_set_hl(0, "IncSearch", { bg = 9550057, fg = 923427 })
|
||||
vim.api.nvim_set_hl(0, "Include", { fg = 12168934 })
|
||||
vim.api.nvim_set_hl(0, "Keyword", { fg = 12168934 })
|
||||
vim.api.nvim_set_hl(0, "Label", { fg = 12168934 })
|
||||
|
3
init.lua
3
init.lua
@ -2,4 +2,5 @@ require("rua.core")
|
||||
require("rua.lazy")
|
||||
|
||||
-- vim.cmd.colorscheme("ex-lackluster-hack")
|
||||
vim.cmd.colorscheme("ex-rei")
|
||||
-- vim.cmd.colorscheme("ex-rei")
|
||||
vim.cmd.colorscheme("rei")
|
||||
|
@ -161,9 +161,10 @@ return {
|
||||
-- init = init_lackluster,
|
||||
},
|
||||
{
|
||||
"wheat-thin-wiens/rei.nvim",
|
||||
-- priority = 1000,
|
||||
lazy = true,
|
||||
-- "wheat-thin-wiens/rei.nvim",
|
||||
"DefectingCat/rei.nvim",
|
||||
priority = 1000,
|
||||
-- lazy = true,
|
||||
config = function()
|
||||
require("rei").setup({
|
||||
styles = {
|
||||
@ -176,15 +177,7 @@ return {
|
||||
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,
|
||||
telescope = "borderless", -- 'borderless' theme also available, leave as true for default theme
|
||||
},
|
||||
transparency = true, -- Enables / Disables background transparency
|
||||
terminal_colors = true,
|
||||
|
Reference in New Issue
Block a user