From 8cd9e32e6ce9f7d002c278eeebd43b689bf09305 Mon Sep 17 00:00:00 2001 From: Ava Gaiety W Date: Sat, 23 Mar 2024 00:41:34 -0500 Subject: [PATCH] color theme improvements --- config.lua | 40 ++++++++++++++++++++++++++++++++-------- 1 file changed, 32 insertions(+), 8 deletions(-) diff --git a/config.lua b/config.lua index 0304ac2..d4aba4d 100644 --- a/config.lua +++ b/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,