summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--.vim/lua/plugins.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua
index 73f9034..cd76838 100644
--- a/.vim/lua/plugins.lua
+++ b/.vim/lua/plugins.lua
@@ -733,11 +733,10 @@ return require('packer').startup({function()
       })
     end} -- }}}
 
-  use {'liuchengxu/vista.vim'}
   use {'rhysd/conflict-marker.vim', disable = true}
   use {'kassio/neoterm', disable = true}
 
-  use {'kristijanhusak/orgmode.nvim', ft = {'org'}, module = {'orgmode'}, -- {{{
+  use {'kristijanhusak/orgmode.nvim', ft = {'org'}, module = {'orgmode'}, disable = true, -- {{{
     config = function()
       require('orgmode').setup_ts_grammar()
       require('orgmode').setup {
@@ -1100,21 +1099,22 @@ return require('packer').startup({function()
       wk_register { ['<leader>g'] = { name = '+Git', m = {'git-messenger'} } }
     end} -- }}}
 
-  -- restore last curosr position (and handle many edge cases)
+  -- restore last cursor position (and handle many edge cases)
   use {'farmergreg/vim-lastplace'}
 
-  use {'folke/todo-comments.nvim', -- {{{
+  use {'folke/todo-comments.nvim', module = {'telescope._extensions.todo-comments'}, cmd = {'TodoTelescope'}, -- {{{
     config = function()
       require('todo-comments').setup {}
       -- vim.keymap.set('n', ';t', function() vim.cmd [[TodoTelescope]] end)
       -- wk_register { [';'] = { name = '+Telescope', t = {'todo-comments'} } }
     end} -- }}}
 
+  -- spelling related stuff
   use {'lewis6991/spellsitter.nvim', disable = true, -- {{{
     config = function()
       require('spellsitter').setup {
         enable = true,
-        spellchecker = 'ffi'
+        -- spellchecker = 'ffi'
       }
     end} -- }}}