summaryrefslogtreecommitdiff
path: root/lua/ben/plugins/neorg.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/ben/plugins/neorg.lua')
-rw-r--r--lua/ben/plugins/neorg.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/lua/ben/plugins/neorg.lua b/lua/ben/plugins/neorg.lua
new file mode 100644
index 0000000..4e89973
--- /dev/null
+++ b/lua/ben/plugins/neorg.lua
@@ -0,0 +1,25 @@
+return {
+ "nvim-neorg/neorg",
+ build = ":Neorg sync-parsers",
+ dependencies = {
+ "nvim-lua/plenary.nvim",
+ "nvim-neorg/neorg-telescope",
+ },
+ config = function()
+ require("neorg").setup({
+ load = {
+ ["core.defaults"] = {}, -- Loads default behaviour
+ ["core.concealer"] = {}, -- Adds pretty icons to your documents
+ ["core.integrations.telescope"] = {},
+ ["core.dirman"] = { -- Manages Neorg workspaces
+ config = {
+ workspaces = {
+ notes = "~/Dropbox/org",
+ },
+ default_workspace = "notes",
+ },
+ },
+ },
+ })
+ end,
+}