nvim: Add prose headline highlighting

Added simple highlighting plugin for prose headlines (and code
snippets). Will highlight the whole line a little from the
background and provide more space around it so it stands out.

Currently works (afaik) for markdown, rmd, norg filetypes.
This commit is contained in:
Marty Oehme 2023-07-25 12:02:53 +02:00
parent 4410a3fa49
commit 55518886f8
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
2 changed files with 8 additions and 0 deletions

View file

@ -22,6 +22,13 @@ return {
})
end,
},
-- displays prettier headlines mimicking the ones in emacs orgmode
{
"lukas-reineke/headlines.nvim",
dependencies = "nvim-treesitter/nvim-treesitter",
config = true,
ft = writing_ft,
},
-- generate an auto-updating html preview for md files
{
"iamcco/markdown-preview.nvim",