Skip to content

Commit

Permalink
fix(editor): add FloatTitle hl (catppuccin#475)
Browse files Browse the repository at this point in the history
Co-authored-by: Myles Mo <mylesmo.ash@gmail.com>
  • Loading branch information
2 people authored and Jint-lzxy committed May 9, 2023
1 parent 304908d commit 16d92cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lua/catppuccin/groups/editor.lua
Expand Up @@ -40,6 +40,7 @@ function M.get()
NormalSB = { fg = C.text, bg = C.crust }, -- normal text in non-current windows
NormalFloat = { fg = C.text, bg = (O.transparent_background and vim.o.winblend == 0) and C.none or C.mantle }, -- Normal text in floating windows.
FloatBorder = { fg = C.blue },
FloatTitle = { fg = C.subtext0 }, -- Title of floating windows
Pmenu = {
bg = (O.transparent_background and vim.o.pumblend == 0) and C.none or U.darken(C.surface0, 0.8, C.crust),
fg = C.overlay2,
Expand Down
2 changes: 1 addition & 1 deletion lua/catppuccin/groups/integrations/neotree.lua
Expand Up @@ -22,7 +22,7 @@ function M.get()
NeoTreeGitStaged = { fg = C.green },

NeoTreeFloatBorder = { link = "FloatBorder" },
NeoTreeFloatTitle = { fg = C.subtext0 },
NeoTreeFloatTitle = { link = "FloatTitle" },

NeoTreeFileNameOpened = { fg = C.pink },
NeoTreeDimText = { fg = C.overlay1 },
Expand Down

0 comments on commit 16d92cb

Please sign in to comment.