color theme improvements
This commit is contained in:
parent
f352344e9e
commit
8cd9e32e6c
1 changed files with 32 additions and 8 deletions
40
config.lua
40
config.lua
|
@ -26,10 +26,6 @@ lvim.plugins = {
|
|||
-- Theme Overrides
|
||||
require("catppuccin").setup({
|
||||
flavour = "macchiato", -- latte, frappe, macchiato, mocha
|
||||
background = { -- :h background
|
||||
light = "latte",
|
||||
dark = "mocha",
|
||||
},
|
||||
transparent_background = true, -- disables setting the background color.
|
||||
show_end_of_buffer = false, -- shows the '~' characters after the end of buffers
|
||||
term_colors = false, -- sets terminal colors (e.g. `g:terminal_color_0`)
|
||||
|
@ -53,8 +49,36 @@ require("catppuccin").setup({
|
|||
operators = {},
|
||||
-- miscs = {}, -- Uncomment to turn off hard-coded styles
|
||||
},
|
||||
color_overrides = {},
|
||||
custom_highlights = {},
|
||||
highlight_overrides = {
|
||||
all = function(colors)
|
||||
return {
|
||||
Comment = { fg = colors.overlay2 },
|
||||
LineNr = { fg = colors.overlay1 },
|
||||
CursorLineNr = { fg = colors.blue, style = { "bold" } },
|
||||
}
|
||||
end,
|
||||
},
|
||||
color_overrides = {
|
||||
macchiato = {
|
||||
flamingo = "#F29D9D",
|
||||
overlay2 = "#7D8296",
|
||||
overlay1 = "#676B80",
|
||||
overlay0 = "#464957",
|
||||
surface2 = "#3A3D4A",
|
||||
surface1 = "#2F313D",
|
||||
surface0 = "#1D1E29",
|
||||
base = "#0b0b12",
|
||||
mantle = "#11111a",
|
||||
crust = "#191926",
|
||||
},
|
||||
},
|
||||
integrations = {
|
||||
telescope = {
|
||||
enabled = true,
|
||||
style = "nvchad",
|
||||
},
|
||||
},
|
||||
|
||||
})
|
||||
|
||||
vim.cmd[[colorscheme catppuccin]]
|
||||
|
@ -91,8 +115,8 @@ dap.adapters.node2 = {
|
|||
require('nvim-cursorline').setup {
|
||||
cursorline = {
|
||||
enable = true,
|
||||
timeout = 1000,
|
||||
number = false,
|
||||
timeout = 10,
|
||||
number = true,
|
||||
},
|
||||
cursorword = {
|
||||
enable = true,
|
||||
|
|
Loading…
Add table
Reference in a new issue