feat(neovim): add neorg
This commit is contained in:
parent
47e7de875a
commit
af37d88f90
|
@ -58,6 +58,7 @@ in {
|
||||||
nvim-dap-ui
|
nvim-dap-ui
|
||||||
nvim-dap-virtual-text
|
nvim-dap-virtual-text
|
||||||
|
|
||||||
|
neorg
|
||||||
orgmode
|
orgmode
|
||||||
];
|
];
|
||||||
extraConfig = with builtins;
|
extraConfig = with builtins;
|
||||||
|
@ -77,6 +78,7 @@ in {
|
||||||
./dap/dap.lua
|
./dap/dap.lua
|
||||||
./dap/mappings.lua
|
./dap/mappings.lua
|
||||||
./treesitter.lua
|
./treesitter.lua
|
||||||
|
./neorg.lua
|
||||||
./orgmode.lua
|
./orgmode.lua
|
||||||
]);
|
]);
|
||||||
withNodeJs = false;
|
withNodeJs = false;
|
||||||
|
|
19
home/editors/neovim/neorg.lua
Normal file
19
home/editors/neovim/neorg.lua
Normal 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",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in a new issue