nvim: Add basic neorg installation
All defaults for now except for concealer installed which prettifies the neorg files.
This commit is contained in:
parent
9628ff30b9
commit
e3b2f0f0e5
2 changed files with 13 additions and 0 deletions
6
nvim/.config/nvim/lua/plug/_neorg.lua
Normal file
6
nvim/.config/nvim/lua/plug/_neorg.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
require("neorg").setup{
|
||||
load = {
|
||||
["core.defaults"] = {},
|
||||
["core.norg.concealer"] = {}
|
||||
}
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue