all repos

init.lua @ 55ab1363276626182d7cb05636e1a832842b2517

my nvim config

init.lua/lua/configs/neorg.lua(view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require("neorg").setup {
  load = {
    ["core.defaults"] = {},
    ["core.norg.journal"] = {},
    ["core.norg.completion"] = {
      config = {
        engine = "nvim-cmp",
      },
    },
    ["core.norg.dirman"] = {
      config = {
        workspaces = {
          prog = "~/notes/programing",
          self = "~/notes/self",
        },
      },
    },
  },
}