✨ updates plugins + install neorg
This commit is contained in:
parent
ddcc033152
commit
945d90d804
2 changed files with 36 additions and 13 deletions
22
init.lua
22
init.lua
|
|
@ -281,6 +281,28 @@ require('lazy').setup({
|
|||
--
|
||||
-- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins
|
||||
-- { import = 'custom.plugins' },
|
||||
{
|
||||
"nvim-neorg/neorg",
|
||||
build = ":Neorg sync-parsers",
|
||||
lazy = false, -- specify lazy = false because some lazy.nvim distributions set lazy = true by default
|
||||
-- tag = "*",
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
config = function()
|
||||
require("neorg").setup {
|
||||
load = {
|
||||
["core.defaults"] = {}, -- Loads default behaviour
|
||||
["core.concealer"] = {}, -- Adds pretty icons to your documents
|
||||
["core.dirman"] = { -- Manages Neorg workspaces
|
||||
config = {
|
||||
workspaces = {
|
||||
notes = "~/notes",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
end,
|
||||
},
|
||||
}, {})
|
||||
|
||||
-- [[ Setting options ]]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue