X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/916478eb344d619ecf930c164540f6fd41002626..28a4be3558b7950191a9110c40081f06c6fb77c5:/config/nvim/lua/plugins.lua diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index e17b35b..20cb89e 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -57,6 +57,7 @@ require('lazy').setup({ 'tpope/vim-endwise', 'rstacruz/vim-closer', 'michaeljsmith/vim-indent-object', + 'Pocco81/auto-save.nvim', -- Treesitter 'nvim-treesitter/nvim-treesitter', @@ -69,20 +70,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' })