29 lines
645 B
Lua
29 lines
645 B
Lua
local status_ok, headlines = pcall(require, "headlines")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
headlines.setup {
|
|
norg = {
|
|
headline_highlights = {
|
|
"@neorg.headings.1.title",
|
|
"@neorg.headings.2.title",
|
|
"@neorg.headings.3.title",
|
|
"@neorg.headings.4.title",
|
|
"@neorg.headings.5.title",
|
|
"@neorg.headings.6.title"
|
|
},
|
|
bullets = { "", "", "", "" },
|
|
},
|
|
markdown = {
|
|
headline_highlights = {
|
|
"@neorg.headings.1.title",
|
|
"@neorg.headings.2.title",
|
|
"@neorg.headings.3.title",
|
|
"@neorg.headings.4.title",
|
|
"@neorg.headings.5.title",
|
|
"@neorg.headings.6.title"
|
|
}
|
|
},
|
|
}
|