refactor(nvim): use headlines.nvim for heading bullets

This commit is contained in:
Price Hiller 2024-02-09 00:08:50 -06:00
parent e76eb1a481
commit 9151a1f99c
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -2,6 +2,30 @@ return {
{
"lukas-reineke/headlines.nvim",
dependencies = "nvim-treesitter/nvim-treesitter",
opts = function()
local bullets = {
"󰀘",
"",
"󰺕",
"",
"󰬪",
"󱆭",
}
return {
markdown = {
bullets = bullets,
},
rmd = {
bullets = bullets,
},
norg = {
bullets = bullets
},
org = {
bullets = bullets
}
}
end,
config = true,
ft = { "markdown", "norg", "rmd", "org" },
},