From ecdc2c2b867837c3c7080769259ce251c504071b Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Wed, 11 Jun 2025 21:07:04 -0700 Subject: [PATCH] Update colors in theme and lazygit config to ensure readability --- .config/lazygit/config.yml | 4 +++ .config/nvim/lua/plugins/theme.lua | 47 +++++++++++++++++++++--------- 2 files changed, 38 insertions(+), 13 deletions(-) create mode 100644 .config/lazygit/config.yml diff --git a/.config/lazygit/config.yml b/.config/lazygit/config.yml new file mode 100644 index 0000000..45d0b6f --- /dev/null +++ b/.config/lazygit/config.yml @@ -0,0 +1,4 @@ +gui: + authorColors: + 'Daniel McKnight': '#cb9eff' + '*': '#71b7ff' diff --git a/.config/nvim/lua/plugins/theme.lua b/.config/nvim/lua/plugins/theme.lua index 244c967..a820652 100644 --- a/.config/nvim/lua/plugins/theme.lua +++ b/.config/nvim/lua/plugins/theme.lua @@ -1,15 +1,36 @@ return { - "projekt0n/github-nvim-theme", - name = "github-theme", - lazy = false, -- make sure we load this during startup if it is your main colorscheme - priority = 1000, -- make sure to load this before all the other start plugins - config = function() - require("github-theme").setup({ - options = { - transparent = true, - }, - }) - vim.cmd("colorscheme github_dark_default") - vim.api.nvim_set_hl(0, "NormalFloat", { bg = "#222222" }) - end, + "projekt0n/github-nvim-theme", + name = "github-theme", + lazy = false, -- make sure we load this during startup if it is your main colorscheme + priority = 1000, -- make sure to load this before all the other start plugins + config = function() + require("github-theme").setup({ + options = { + transparent = true, + }, + }) + vim.cmd("colorscheme github_dark_default") + vim.api.nvim_set_hl(0, "NormalFloat", { bg = "#222222" }) + vim.api.nvim_set_hl(0, "WinSeparator", { fg = "#008b8b" }) + vim.api.nvim_set_hl(0, "VertSplit", { fg = "#008b8b" }) + vim.api.nvim_set_hl(0, "dircolorsColor0_1", { fg = "#91cbff" }) + vim.api.nvim_set_hl(0, "dircolorsColor11_1", { bg = "#91cbff" }) + vim.api.nvim_set_hl(0, "MiniStarterItemBullet", { bg = "#484f58" }) + vim.api.nvim_set_hl(0, "FloatBorder", { fg = "#484f58" }) + -- vim.api.nvim_set_hl(0, "NvimTreeEndOfBuffer", { bg = "#000000"}) + --vim.api.nvim_set_hl(0, "NeoTreeEndOfBuffer", { fg = "#04070d" }) + vim.api.nvim_set_hl(0, "RedrawDebugClear", { fg = "#000000" }) + vim.api.nvim_set_hl(0, "BufferDefaultCurrentHINT", { fg = "#fdfdfd", bg = "#6e7681" }) + vim.api.nvim_set_hl(0, "DevIconDefaultCurrent", { fg = "#2e63ff", bg = "#6e7681" }) + vim.api.nvim_set_hl(0, "NeoTreeTabSeparatorActive", { fg = "#000000" }) + vim.api.nvim_set_hl(0, "dircolorsDirectory", { fg = "#71b7ff" }) + vim.api.nvim_set_hl(0, "DevIconIcalendar", { fg = "#71b7ff" }) + vim.api.nvim_set_hl(0, "DevIconIfb", { fg = "#71b7ff" }) + vim.api.nvim_set_hl(0, "DevIconIcs", { fg = "#71b7ff" }) + vim.api.nvim_set_hl(0, "DevIconIcal", { fg = "#71b7ff" }) + vim.api.nvim_set_hl(0, "DevIconFedora", { fg = "#71b7ff" }) + vim.api.nvim_set_hl(0, "BufferDefaultCurrentINFO", { fg = "#39c5cf" }) + -- vim.api.nvim_set_hl(0, "EndOfBuffer", { fg = "#000000" }) + vim.api.nvim_set_hl(0, "MiniStatuslineModeOther", { fg = "#7d8590" }) + end, }