im stupid and i should kill myself

This commit is contained in:
Sakooooo 2024-04-03 21:28:36 +00:00
parent 9071d7e0b1
commit 919b772ae5

View file

@ -31,16 +31,24 @@ local plugins = {
"windwp/nvim-ts-autotag",
-- org mode
{
'nvim-orgmode/orgmode',
event = 'VeryLazy',
config = function()
-- Setup orgmode
require('orgmode').setup({
org_agenda_files = '~/org/*',
--org_default_notes_file = '~/org/refile.org',
})
},
{
'nvim-orgmode/orgmode',
event = 'VeryLazy',
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,
},
-- like fzf but goofier
{