added nvim

This commit is contained in:
Daniel Fichtinger 2024-11-03 15:03:42 -05:00
parent 02fe17d9a1
commit 975099489a
34 changed files with 1523 additions and 0 deletions

View file

@ -0,0 +1,19 @@
-- return {
-- "nvim-orgmode/orgmode",
-- event = "VeryLazy",
-- ft = { "org" },
-- config = function()
-- -- Setup orgmode
-- require("orgmode").setup({
-- org_agenda_files = "~/orgfiles/**/*",
-- org_default_notes_file = "~/orgfiles/refile.org",
-- })
--
-- -- NOTE: If you are using nvim-treesitter with ~ensure_installed = "all"~ option
-- -- add ~org~ to ignore_install
-- -- require('nvim-treesitter.configs').setup({
-- -- ensure_installed = 'all',
-- -- ignore_install = { 'org' },
-- -- })
-- end,
-- }