mirror of
https://github.com/WarrenHood/dotfiles.git
synced 2025-04-29 23:04:59 +01:00
Add neorg plugin
This commit is contained in:
parent
9e6f6950d2
commit
3f7be32ba5
|
@ -152,6 +152,18 @@ require("packer").startup(function()
|
||||||
requires = { 'kyazdani42/nvim-web-devicons' },
|
requires = { 'kyazdani42/nvim-web-devicons' },
|
||||||
}
|
}
|
||||||
|
|
||||||
|
use {
|
||||||
|
"nvim-neorg/neorg",
|
||||||
|
run = ":Neorg sync-parsers", -- This is the important bit!
|
||||||
|
config = function()
|
||||||
|
require("neorg").setup {
|
||||||
|
load = {
|
||||||
|
["core.defaults"] = {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
-- Automatically set up configuration after cloning packer.nvim
|
-- Automatically set up configuration after cloning packer.nvim
|
||||||
if packer_bootstrap then
|
if packer_bootstrap then
|
||||||
|
|
Loading…
Reference in a new issue