nvim: let's try out this orgmode thing
This commit is contained in:
@ -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)
|
||||
|
||||
6
.config/nvim/lua/plugins/orgmode.lua
Normal file
6
.config/nvim/lua/plugins/orgmode.lua
Normal 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",
|
||||
})
|
||||
Reference in New Issue
Block a user