refactor(nvim): use headlines.nvim for heading bullets
This commit is contained in:
parent
e76eb1a481
commit
9151a1f99c
@ -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" },
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user