feat: better neorg configuration
This commit is contained in:
parent
935bfde0fd
commit
111fc182f2
16
init.lua
16
init.lua
|
@ -61,22 +61,8 @@ require("lazy").setup({
|
||||||
{
|
{
|
||||||
"nvim-neorg/neorg",
|
"nvim-neorg/neorg",
|
||||||
build = ":Neorg sync-parsers",
|
build = ":Neorg sync-parsers",
|
||||||
|
branch = "main",
|
||||||
dependencies = { "nvim-lua/plenary.nvim" },
|
dependencies = { "nvim-lua/plenary.nvim" },
|
||||||
config = function()
|
|
||||||
require("neorg").setup {
|
|
||||||
load = {
|
|
||||||
["core.defaults"] = {},
|
|
||||||
["core.concealer"] = {},
|
|
||||||
["core.dirman"] = {
|
|
||||||
config = {
|
|
||||||
workspaces = {
|
|
||||||
notes = "~/NAS/Neorg/Notes",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
end,
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -2,3 +2,4 @@ require 'core.options'
|
||||||
require 'core.dashboard'
|
require 'core.dashboard'
|
||||||
require 'core.keybinds'
|
require 'core.keybinds'
|
||||||
require 'core.lualine'
|
require 'core.lualine'
|
||||||
|
require 'core.neorg'
|
||||||
|
|
17
lua/core/neorg.lua
Normal file
17
lua/core/neorg.lua
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
require("neorg").setup {
|
||||||
|
load = {
|
||||||
|
["core.defaults"] = {},
|
||||||
|
["core.dirman"] = {
|
||||||
|
config = {
|
||||||
|
workspaces = {
|
||||||
|
notes = "~/NAS/Neorg/Notes",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
["core.concealer"] = {
|
||||||
|
config = {
|
||||||
|
icons_preset = "varied"
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in a new issue