diff --git a/.config/nvim/after/plugin/neorg.rc.lua b/.config/nvim/after/plugin/neorg.rc.lua new file mode 100644 index 0000000..34eb640 --- /dev/null +++ b/.config/nvim/after/plugin/neorg.rc.lua @@ -0,0 +1,13 @@ +require('neorg').setup { + load = { + ["core.defaults"] = {} + }, + ["core.norg.dirman"] = { + config = { + workspaces = { + work = "~/notes/work", + home = "~/notes/home", + } + } + } +} diff --git a/.config/nvim/after/plugin/which.rc.lua b/.config/nvim/after/plugin/which.rc.lua new file mode 100644 index 0000000..a5317b2 --- /dev/null +++ b/.config/nvim/after/plugin/which.rc.lua @@ -0,0 +1,5 @@ +require("which-key").setup { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below +}