Skip to content

Commit

Permalink
fix(dropbar): correct keyword highlight link (#652)
Browse files Browse the repository at this point in the history
Replace DropBarKindIconKeyword to DropBarIconKindKeyword
  • Loading branch information
lucobellic committed Jan 26, 2024
1 parent bc1f215 commit afab7ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/catppuccin/groups/integrations/dropbar.lua
Expand Up @@ -31,7 +31,7 @@ function M.get()
DropBarKindIdentifier = color and { link = "DropBarIconKindIdentifier" } or { fg = C.text },
DropBarKindIfStatement = color and { link = "DropBarIconKindIfStatement" } or { fg = C.text },
DropBarKindInterface = color and { link = "DropBarIconKindInterface" } or { fg = C.text },
DropBarKindKeyword = color and { link = "DropBarKindIconKeyword" } or { fg = C.text },
DropBarKindKeyword = color and { link = "DropBarIconKindKeyword" } or { fg = C.text },
DropBarKindList = color and { link = "DropBarIconKindList" } or { fg = C.text },
DropBarKindMacro = color and { link = "DropBarIconKindMacro" } or { fg = C.text },
DropBarKindMarkdownH1 = color and { link = "DropBarIconKindMarkdownH1" } or { fg = C.text },
Expand Down

0 comments on commit afab7ec

Please sign in to comment.