Skip to content

Commit

Permalink
add(highlight): add support for csv highlights
Browse files Browse the repository at this point in the history
  • Loading branch information
zootedb0t committed Jun 22, 2024
1 parent 665de14 commit cced937
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion lua/citruszest/highlights/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,6 @@ M.theme = function(C, O)
["@tag.delimiter"] = { fg = C.red }, -- Tag delimiter like < > /

-- Language specific:

-- Markdown
["@markup.heading.1.markdown"] = { link = "rainbow1" },
["@markup.heading.2.markdown"] = { link = "rainbow2" },
Expand Down Expand Up @@ -407,6 +406,17 @@ M.theme = function(C, O)
-- Haskell
["@operator.haskell"] = { fg = C.bright_yellow },

-- csv
csvCol0 = { fg = C.bright_orange },
csvCol1 = { fg = C.bright_green },
csvCol2 = { fg = C.bright_yellow },
csvCol3 = { fg = C.bright_red },
csvCol4 = { fg = C.bright_blue },
csvCol5 = { fg = C.bright_cyan },
csvCol6 = { fg = C.lemon_yellow },
csvCol7 = { fg = C.aurora },
csvCol8 = { fg = C.red },

-- QuickFix
QuickFixLine = { bg = C.cursor, bold = O.bold }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
qfFileName = { fg = C.bright_orange },
Expand Down

0 comments on commit cced937

Please sign in to comment.