fix(nvim): correctly disable headlines.nvim in markdown files

This commit is contained in:
Price Hiller 2024-11-03 22:38:26 -06:00
parent 530351d083
commit 692912782d
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -23,7 +23,10 @@ return {
} }
local headlines = require("headlines") local headlines = require("headlines")
headlines.setup({ headlines.setup({
markdown = false, markdown = {
bullets = false,
query = false,
},
rmd = { rmd = {
bullets = bullets, bullets = bullets,
bullet_highlights = bullet_highlights, bullet_highlights = bullet_highlights,