From d2b4a645d213070f74e52495bb0a7148622a832b Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Thu, 29 Feb 2024 17:23:17 +0100 Subject: Remove orgmode --- config/nvim/lua/plugins.lua | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'config/nvim/lua/plugins.lua') diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index e17b35b..24154d9 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -69,20 +69,5 @@ require('lazy').setup({ -- Tools 'vim-scripts/LargeFile', 'tpope/vim-fugitive', - 'milkypostman/vim-togglelist', - - -- Org Mode - { 'nvim-orgmode/orgmode', - event = 'VeryLazy', - config = function() - -- Load treesitter grammar for org - require('orgmode').setup_ts_grammar() - - -- Setup orgmode - require('orgmode').setup({ - org_agenda_files = '~/brain/**/*.org', - org_default_notes_file = '~/brain/inbox.org', - }) - end, - } + 'milkypostman/vim-togglelist' }) -- cgit