Org mode / quality of life stuff
This commit is contained in:
parent
332ff948ed
commit
150e21702e
12 changed files with 238 additions and 3 deletions
20
after/plugin/neorg.lua
Normal file
20
after/plugin/neorg.lua
Normal 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"
|
||||
})
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue