From 919b772ae516da2d3453fad730c75bd24975d896 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Wed, 3 Apr 2024 21:28:36 +0000 Subject: [PATCH] im stupid and i should kill myself --- config/nvim/lua/core/plugins.lua | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/config/nvim/lua/core/plugins.lua b/config/nvim/lua/core/plugins.lua index ed3eee3b..7f820ab8 100644 --- a/config/nvim/lua/core/plugins.lua +++ b/config/nvim/lua/core/plugins.lua @@ -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 {