feat(nvim): underline typst titles

This commit is contained in:
Price Hiller 2024-01-21 04:24:54 -06:00
parent 3a3096bb38
commit 93eb82f02b
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -1 +1,10 @@
vim.opt_local.shiftwidth = 2
vim.api.nvim_set_hl(
0,
"@text.title.typst",
vim.tbl_deep_extend(
"force",
vim.api.nvim_get_hl(0, { name = "@text.title.typst", link = false }),
{ underline = true }
)
)