nvim: Add basic neorg installation

All defaults for now except for concealer installed which prettifies
the neorg files.
This commit is contained in:
Marty Oehme 2022-05-03 10:11:36 +02:00
parent 9628ff30b9
commit e3b2f0f0e5
Signed by: Marty
GPG key ID: 73BA40D5AFAF49C9
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,6 @@
require("neorg").setup{
load = {
["core.defaults"] = {},
["core.norg.concealer"] = {}
}
}

View file

@ -156,6 +156,13 @@ require("packer").startup(function()
"folke/which-key.nvim",
config = function() require("which-key").setup {} end
}
-- extensive organization plugin mimicking orgmode
use {
"nvim-neorg/neorg",
config = function() require("plug._neorg") end,
requires = "nvim-lua/plenary.nvim",
tag = "*"
}
-- fuzzy matching
use {