nvim: let's try out this orgmode thing

This commit is contained in:
mequidis
2022-05-14 10:08:31 +03:00
parent a3cbc9e43f
commit 7e598553ef
2 changed files with 18 additions and 0 deletions

View File

@ -257,4 +257,16 @@ require("packer").startup(function()
require("plugins.vimtex")
end,
})
--
-- orgmode
--
use({
"nvim-orgmode/orgmode",
after = 'nvim-treesitter',
config = function()
require("plugins.orgmode")
end,
})
end)

View File

@ -0,0 +1,6 @@
require("orgmode").setup_ts_grammar()
require("orgmode").setup({
org_agenda_files = { "~/docs/org/*" },
org_default_notes_file = "~/docs/org/refile.org",
})