summaryrefslogtreecommitdiffstats
path: root/lua/core/overrides/neorg.lua
blob: 8412901fdc1f08a8d634c800718eba9fc79d3284 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require('neorg').setup {
  load = {
    ['core.defaults'] = {},
    ['core.norg.concealer'] = {
      config = {
        dim_code_blocks = {
          width = 'content',
          padding = { right = 2, },
        },
        folds = false,
      }
    },
    ['core.norg.completion'] = {
      config = { engine = 'nvim-cmp', }
    },
  }
}