summaryrefslogtreecommitdiffstats
path: root/lua/conf/plugins/headlines.lua
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2025-05-06 16:51:24 -0500
committerSquibid <me@zacharyscheiman.com>2025-05-06 16:51:24 -0500
commit7c3289fded1f75f6e060f56bd06edc2a327744d9 (patch)
treebf579e6eb1de84237a74ef13ce67703c15266afe /lua/conf/plugins/headlines.lua
parent3094bf2a3983b375f4adeccd25c3b12bbbded2aa (diff)
downloadnvim-7c3289fded1f75f6e060f56bd06edc2a327744d9.tar.gz
nvim-7c3289fded1f75f6e060f56bd06edc2a327744d9.tar.bz2
nvim-7c3289fded1f75f6e060f56bd06edc2a327744d9.zip
kitchen sink again :(
Diffstat (limited to 'lua/conf/plugins/headlines.lua')
-rw-r--r--lua/conf/plugins/headlines.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/lua/conf/plugins/headlines.lua b/lua/conf/plugins/headlines.lua
deleted file mode 100644
index e2dedd6..0000000
--- a/lua/conf/plugins/headlines.lua
+++ /dev/null
@@ -1,21 +0,0 @@
-return { 'lukas-reineke/headlines.nvim',
- requires = 'nvim-treesitter/nvim-treesitter',
- function()
- require('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 = false
- }
- }
- end
-}