diff options
| author | Robert Günzler <r@gnzler.io> | 2021-11-02 17:52:09 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-11-02 19:06:49 +0100 |
| commit | e19fec0d289d4fcb1d38310bcbab933ff400e9b3 (patch) | |
| tree | f149cae30251235165412c4438e0c6d16aff3942 /.vim/lua | |
| parent | 5b8b04fc1b5f765d1e9f6f59e3309562b5feef35 (diff) | |
vim: add some disabled plugins
Diffstat (limited to '.vim/lua')
| -rw-r--r-- | .vim/lua/plugins.lua | 32 |
1 files changed, 27 insertions, 5 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua index b263ba2..ddc7bbf 100644 --- a/.vim/lua/plugins.lua +++ b/.vim/lua/plugins.lua @@ -32,10 +32,10 @@ local function disable_distribution_plugins() -- {{{ g.loaded_2html_plugin = 1 g.loaded_logiPat = 1 g.loaded_rrhelper = 1 - -- g.loaded_netrw = 1 - -- g.loaded_netrwPlugin = 1 - -- g.loaded_netrwSettings = 1 - -- g.loaded_netrwFileHandlers = 1 + g.loaded_netrw = 1 + g.loaded_netrwPlugin = 1 + g.loaded_netrwSettings = 1 + g.loaded_netrwFileHandlers = 1 end -- }}} return require('packer').startup({function() @@ -73,7 +73,10 @@ return require('packer').startup({function() -- vim.cmd [[ call dirvish#add_icon_fn({ p -> p[-1:]=='/'?'':' '}) ]] end} -- folder browser - use {'ggandor/lightspeed.nvim'} + use {'ggandor/lightspeed.nvim', disable = true, + config = function() + -- vim.cmd [[ vunmap x ]] + end} use {'jose-elias-alvarez/null-ls.nvim', -- {{{ requires = {'nvim-lua/plenary.nvim'}, @@ -160,6 +163,10 @@ return require('packer').startup({function() } end} -- }}} + use {'weilbith/nvim-code-action-menu', + cmd = 'CodeActionMenu', + } + use {'nvim-treesitter/nvim-treesitter', -- {{{ run = ':TSUpdate', requires = { @@ -363,6 +370,12 @@ return require('packer').startup({function() nnoremap { ';r', require('telescope.builtin').lsp_references } end} -- }}} + -- TODO(robert): look into this more + use {'tjdevries/sg.nvim', disable = true, + requires = {'nvim-lua/plenary.nvim'}, + config = function() + end} + -- polyfill for some missing stuff use {'tjdevries/astronauta.nvim'} @@ -496,6 +509,7 @@ return require('packer').startup({function() -- use {'rhysd/vim-grammarous', -- ft = {'markdown', 'latex', 'tex'} -- } + use {'lervag/vimtex', -- {{{ ft = {'latex', 'tex'}, config = function() @@ -689,6 +703,14 @@ return require('packer').startup({function() } end} -- }}} + use {'lewis6991/spellsitter.nvim', disable = true, + config = function() + require('spellsitter').setup { + enable = true, + spellchecker = 'ffi' + } + end} + use {'rktjmp/lush.nvim'} end, |