summaryrefslogtreecommitdiffstats
path: root/core/overrides/neorg.lua
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2022-12-30 12:42:17 -0500
committerSquibid <me@zacharyscheiman.com>2022-12-30 12:42:17 -0500
commiteaa58ff6184e6b0bb3abf03d2314864795a13fbd (patch)
tree01c211d0c668d90da20b2c6a678b9d40b09ff20f /core/overrides/neorg.lua
parent65a03860fbf2216efd8f24e295c70e8027608d72 (diff)
downloadnvim-eaa58ff6184e6b0bb3abf03d2314864795a13fbd.tar.gz
nvim-eaa58ff6184e6b0bb3abf03d2314864795a13fbd.tar.bz2
nvim-eaa58ff6184e6b0bb3abf03d2314864795a13fbd.zip
reorganize to multi file config and switch to lazy.nvim for plugins
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', }
+ },
+ }
+}