feat(nvim): support italics in typst ft

This commit is contained in:
Price Hiller 2024-01-21 14:17:44 -06:00
parent 48270006c4
commit 0c41ec26a3
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -8,3 +8,8 @@ vim.api.nvim_set_hl(
{ underline = true, bold = true }
)
)
vim.api.nvim_set_hl(
0,
"@text.emph.typst",
{ link = "@text.emphasis" }
)