From bba9169e4a9af48e9544ab86fd133d902db94b4c Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Thu, 4 Apr 2024 22:56:46 +0200 Subject: [PATCH] nvim colors --- nvim/lua/config/plugins/catppuccin.lua | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/nvim/lua/config/plugins/catppuccin.lua b/nvim/lua/config/plugins/catppuccin.lua index 554a75a..a3ff444 100644 --- a/nvim/lua/config/plugins/catppuccin.lua +++ b/nvim/lua/config/plugins/catppuccin.lua @@ -19,16 +19,23 @@ return { highlight_overrides = { mocha = function(colors) return { - NormalFloat = { bg = colors.crust }, - FloatBorder = { fg = colors.crust, bg = colors.crust }, + -- Floating windows + NormalFloat = { fg = colors.text, bg = colors.base }, + FloatTitle = { fg = colors.base, bg = colors.blue }, + FloatBorder = { fg = colors.blue, bg = colors.base }, + + -- Window separator WinSeparator = { fg = colors.surface0 }, - NoiceMini = { bg = colors.crust }, + -- Menus + Pmenu = { fg = colors.text, bg = colors.mantle }, + + -- NoiceMini = { link = "NormalFloat" }, + WhichKeyFloat = { link = "Pmenu" }, -- indent lines IblScope = { fg = colors.overlay1 }, - -- LSP -- LspReferenceText = { bg = colors.surface0 }, -- LspReferenceRead = { link = "LspReferenceText" },