Skip to content

Commit ef013ea

Browse files
authored
Merge pull request #82 from uloco/16-add-markdown-without-treesitter
Add markdown native support
2 parents 1aa4dff + 60b65eb commit ef013ea

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

lua/lush_theme/bluloco.lua

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1127,6 +1127,51 @@ local theme = lush(function(injected_functions)
11271127
dosiniNumber { Number },
11281128
dosiniComment { Comment },
11291129
--
1130+
1131+
-- markdown
1132+
markdownBoldItalicDelimiter { Punctuation },
1133+
markdownUrITitleDelimiter { Punctuation },
1134+
markdownOrderedListMarker { Punctuation },
1135+
markdownHeadingDelimiter { Punctuation },
1136+
markdownStrikeDelimiter { Punctuation },
1137+
markdownItalicDelimiter { Punctuation },
1138+
markdownIdDeclaration { Punctuation },
1139+
markdownCodeDelimiter { Punctuation },
1140+
markdownBoldDelimiter { Punctuation },
1141+
markdownUrlDelimiter { Punctuation },
1142+
markdownLinkTextDelimiter { Punctuation },
1143+
markdownLinkDelimiter { Punctuation },
1144+
markdownIdDelimiter { Punctuation },
1145+
markdownHeadingRule { Punctuation },
1146+
markdownH6Delimiter { Punctuation },
1147+
markdownH5Delimiter { Punctuation },
1148+
markdownH4Delimiter { Punctuation },
1149+
markdownH3Delimiter { Punctuation },
1150+
markdownH2Delimiter { Punctuation },
1151+
markdownH1Delimiter { Punctuation },
1152+
markdownListMarker { Punctuation },
1153+
-- markdownBoldItalic {},
1154+
markdownBlockquote { fg = t.constant },
1155+
markdownUrITitle {},
1156+
markdownLinkText { fg = t.constant },
1157+
markdownFootnoteDefinition {fg = t.number},
1158+
markdownFootnote { fg = t.number },
1159+
-- markdownStrike {},
1160+
markdownItalic { Italic, fg = t.parameter },
1161+
markdownRule { Keyword },
1162+
markdownBold { Bold, fg = t.type },
1163+
markdownUrl { sym("@markup.link.url") },
1164+
markdownLink { sym("@markup.link.url") },
1165+
-- markdownAutomaticLink {},
1166+
markdownCode { fg = t.property },
1167+
markdownCodeBlock { fg = t.property },
1168+
markdownId { fg = t.method },
1169+
markdownH6 { String },
1170+
markdownH5 { String },
1171+
markdownH4 { String },
1172+
markdownH3 { String },
1173+
markdownH2 { String },
1174+
markdownH1 { String },
11301175
}
11311176
end)
11321177
return theme

0 commit comments

Comments
 (0)