fixup! feat(nvim): improve styling of typst titles

This commit is contained in:
Price Hiller 2024-01-21 04:28:44 -06:00
parent 93eb82f02b
commit 045cd888ea
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -5,6 +5,6 @@ vim.api.nvim_set_hl(
vim.tbl_deep_extend( vim.tbl_deep_extend(
"force", "force",
vim.api.nvim_get_hl(0, { name = "@text.title.typst", link = false }), vim.api.nvim_get_hl(0, { name = "@text.title.typst", link = false }),
{ underline = true } { underline = true, bold = true }
) )
) )