From 78d2516d02338176cec39c7542849fc37204a617 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 3 Jun 2024 23:00:53 -0500 Subject: [PATCH] refactor(nvim): set hl for `NeogitCommandText` --- users/price/dots/.config/nvim/lua/plugins/configs/kanagawa.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/price/dots/.config/nvim/lua/plugins/configs/kanagawa.lua b/users/price/dots/.config/nvim/lua/plugins/configs/kanagawa.lua index dfaa95d9..83f9350a 100644 --- a/users/price/dots/.config/nvim/lua/plugins/configs/kanagawa.lua +++ b/users/price/dots/.config/nvim/lua/plugins/configs/kanagawa.lua @@ -35,7 +35,6 @@ return { }) vim.cmd.colorscheme("kanagawa") - local palette = require("kanagawa.colors").setup() local colors = require("kanagawa.colors").setup().palette -- HACK: This table was formed as an array to ensure the ordering of the keys. Since some @@ -60,6 +59,7 @@ return { { "WinSeparator", { fg = colors.fujiGray } }, { "StatusLine", { fg = colors.fujiWhite, bg = colors.sumiInk0 } }, { "WinBar", { link = "StatusLine" } }, + { "NeogitCommandText", { fg = colors.oniViolet2 } }, { "NeogitPopupSectionTitle", { fg = colors.crystalBlue } }, { "NeogitPopupConfigEnabled", { fg = colors.springBlue, italic = true } }, { "NeogitPopupActionkey", { fg = colors.surimiOrange } },