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
|
@ -149,7 +149,19 @@ require("packer").startup(function()
|
||||||
-- Tab
|
-- Tab
|
||||||
use {
|
use {
|
||||||
'romgrk/barbar.nvim',
|
'romgrk/barbar.nvim',
|
||||||
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,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue