add neoorg

This commit is contained in:
2023-08-15 08:48:03 -07:00
parent 21931b449a
commit 667e3645da
4 changed files with 57 additions and 76 deletions

View File

@@ -91,6 +91,25 @@ require('packer').startup(function(use)
end
}
use {
"nvim-neorg/neorg",
-- tag = "*",
ft = "norg",
after = "nvim-treesitter", -- You may want to specify Telescope here as well
config = function()
require('neorg').setup {
load = {
["core.defaults"] = {}, -- Loads default behaviour
["core.concealer"] = {}, -- Adds pretty icons to your documents
["core.completion"] = { config = { engine = "nvim-cmp" } }, -- Adds completion
["core.dirman"] = { -- Manages Neorg workspaces
config = { workspaces = { notes = "~/notes" } }
}
}
}
end
}
use { 'junegunn/fzf', run = function() vim.fn['fzf#install']() end }
-- use {