Org mode / quality of life stuff

This commit is contained in:
agryphus 2023-09-25 17:06:11 -04:00
parent 332ff948ed
commit 150e21702e
12 changed files with 238 additions and 3 deletions

20
after/plugin/neorg.lua Normal file
View file

@ -0,0 +1,20 @@
require('neorg').setup {
load = {
["core.defaults"] = {},
["core.concealer"] = {},
["core.dirman"] = {
config = {
workspaces = {
notes = "~/dox/norg/notes",
school = "~/school/",
},
},
},
},
}
vim.api.nvim_create_autocmd({"BufEnter", "BufWinEnter"}, {
pattern = {"*.norg"},
command = "set conceallevel=3"
})