summaryrefslogtreecommitdiffstats
path: root/lua/conf/plugins/headlines.lua
blob: c932d72c4d5b6268247c62a520abb1cb3354416c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 = {
          "@neorg.headings.1.title",
          "@neorg.headings.2.title",
          "@neorg.headings.3.title",
          "@neorg.headings.4.title",
          "@neorg.headings.5.title",
          "@neorg.headings.6.title"
        }
      }
    }
  end
}