summaryrefslogtreecommitdiffstats
path: root/after/plugin
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2023-05-23 14:35:49 -0400
committerSquibid <me@zacharyscheiman.com>2023-05-23 14:35:49 -0400
commit9e80da174b144f60116cf563c650aa7c98e31031 (patch)
tree05a87e2d3296a005b7841fed98b1a36e04d26919 /after/plugin
parent3094f3460e9fc10313bfe4832a58c329ad3cb986 (diff)
downloadnvim-9e80da174b144f60116cf563c650aa7c98e31031.tar.gz
nvim-9e80da174b144f60116cf563c650aa7c98e31031.tar.bz2
nvim-9e80da174b144f60116cf563c650aa7c98e31031.zip
more neorg modules
Diffstat (limited to '')
-rw-r--r--after/plugin/neorg.lua16
1 files changed, 14 insertions, 2 deletions
diff --git a/after/plugin/neorg.lua b/after/plugin/neorg.lua
index 2331864..af41a47 100644
--- a/after/plugin/neorg.lua
+++ b/after/plugin/neorg.lua
@@ -3,16 +3,26 @@ if not status_ok then
return
end
+local wsphome = "~/documents/notes/"
neorg.setup {
load = {
["core.defaults"] = {},
+ ["core.esupports.metagen"] = {
+ config = {
+ type = "auto",
+ update_date = true,
+ }
+ },
["core.dirman"] = {
config = {
workspaces = {
- home = "~/Documents/notes/home",
- }
+ home = wsphome .. "home",
+ robotics = wsphome .. "robotics"
+ },
+ index = "index.norg",
}
},
+ ["core.summary"] = {},
["core.concealer"] = {
config = {
dim_code_blocks = {
@@ -20,6 +30,8 @@ neorg.setup {
content_only = false,
width = "content",
},
+ folds = false,
+ icon_preset = "varied",
}
},
["core.export"] = {},