My own first version of kickstart.nvim
This commit is contained in:
parent
3668af39f4
commit
dc41cd1fc2
16 changed files with 305 additions and 93 deletions
29
lua/custom/plugins/neorg.lua
Normal file
29
lua/custom/plugins/neorg.lua
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
return {
|
||||
"nvim-neorg/neorg",
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
build = ":Neorg sync-parsers",
|
||||
-- tag = "*",
|
||||
lazy = true, -- enable lazy load
|
||||
ft = "norg", -- lazy load on file type
|
||||
cmd = "Neorg", -- lazy load on command
|
||||
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 = "~/documents/notes",
|
||||
},
|
||||
},
|
||||
},
|
||||
["core.completion"] = {
|
||||
config = {
|
||||
engine = "nvim-cmp",
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue