From 045cd888eab25b7aa0ff636c5fa4210e42e0637c Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 21 Jan 2024 04:28:44 -0600 Subject: [PATCH] fixup! feat(nvim): improve styling of typst titles --- dots/.config/nvim/after/ftplugin/typst.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/nvim/after/ftplugin/typst.lua b/dots/.config/nvim/after/ftplugin/typst.lua index 9c8a12a4..90fdba18 100644 --- a/dots/.config/nvim/after/ftplugin/typst.lua +++ b/dots/.config/nvim/after/ftplugin/typst.lua @@ -5,6 +5,6 @@ vim.api.nvim_set_hl( vim.tbl_deep_extend( "force", vim.api.nvim_get_hl(0, { name = "@text.title.typst", link = false }), - { underline = true } + { underline = true, bold = true } ) )