summaryrefslogtreecommitdiffstats
path: root/lua/core/overrides/neorg.lua
blob: dc6df57376fda3197bbc1c4125ba2542002e2343 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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', }
    },
    ['core.integrations.nvim-cmp'] = {},
  }
}