nvim/lua/plugins/nvim_neorg.lua

27 lines
841 B
Lua
Raw Normal View History

return {
"nvim-neorg/neorg",
build = ":Neorg sync-parsers",
event = { "FileType norg" },
cmd = "Neorg",
lazy = true,
dependencies = { "nvim-lua/plenary.nvim", "nvim-treesitter/nvim-treesitter" },
init = function()
vim.api.nvim_create_autocmd({ "BufNewFile", "BufReadPost" }, {
pattern = { "*.norg" },
command = "set filetype=norg",
})
vim.api.nvim_create_autocmd({ "BufWritePre" }, {
pattern = { "*.norg" },
command = "Neorg update-metadata",
})
end,
opts = {
load = {
["core.defaults"] = {},
["core.concealer"] = {},
["core.dirman"] = { config = { workspaces = { notes = "~/notes" } } },
["core.completion"] = { config = { engine = "nvim-cmp" } },
},
},
}