summaryrefslogtreecommitdiffstats
path: root/core/overrides/neorg.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--core/overrides/neorg.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/core/overrides/neorg.lua b/core/overrides/neorg.lua
new file mode 100644
index 0000000..8412901
--- /dev/null
+++ b/core/overrides/neorg.lua
@@ -0,0 +1,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', }
+ },
+ }
+}