feat(neovim): add neorg

This commit is contained in:
Felix Schröter 2022-05-19 00:51:22 +02:00
parent 47e7de875a
commit af37d88f90
Signed by: felschr
GPG key ID: 671E39E6744C807D
2 changed files with 21 additions and 0 deletions

View file

@ -58,6 +58,7 @@ in {
nvim-dap-ui
nvim-dap-virtual-text
neorg
orgmode
];
extraConfig = with builtins;
@ -77,6 +78,7 @@ in {
./dap/dap.lua
./dap/mappings.lua
./treesitter.lua
./neorg.lua
./orgmode.lua
]);
withNodeJs = false;

View file

@ -0,0 +1,19 @@
require("neorg").setup {
load = {
["core.defaults"] = {},
["core.norg.dirman"] = {
config = {
workspaces = {
work = "~/notes/work",
home = "~/notes/home",
},
},
},
["core.norg.concealer"] = {},
["core.norg.completion"] = {
config = {
engine = "nvim-cmp",
},
},
},
}