summaryrefslogtreecommitdiffstats
path: root/after
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2023-11-26 14:25:39 -0500
committerSquibid <me@zacharyscheiman.com>2023-11-26 14:25:39 -0500
commitab707f7d8fef779840ce6666785528cac0b178b7 (patch)
tree896f28d076fcb45d678b52ae9aff3d5dca429ec3 /after
parentb4b9ecf07b323a7466e675a538575683c3d2365d (diff)
downloadnvim-ab707f7d8fef779840ce6666785528cac0b178b7.tar.gz
nvim-ab707f7d8fef779840ce6666785528cac0b178b7.tar.bz2
nvim-ab707f7d8fef779840ce6666785528cac0b178b7.zip
add colored headlines for markdown
Diffstat (limited to '')
-rw-r--r--after/plugin/headlines.lua12
1 files changed, 11 insertions, 1 deletions
diff --git a/after/plugin/headlines.lua b/after/plugin/headlines.lua
index 5ecacda..fbb7146 100644
--- a/after/plugin/headlines.lua
+++ b/after/plugin/headlines.lua
@@ -12,6 +12,16 @@ headlines.setup {
"@neorg.headings.4.title",
"@neorg.headings.5.title",
"@neorg.headings.6.title"
- },
+ }
+ },
+ 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"
+ }
},
}