diff options
author | Chris <[email protected]> | 2021-03-17 14:15:20 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-17 14:15:20 -0400 |
commit | b29ef8fa58b5214ed835f7711243e0ba492aebce (patch) | |
tree | 02e47ce9e6fb8fc387efc8b875b721c2cc899c85 /lua/plugins.lua | |
parent | c3ec305ccbd1b1fd54eabb748c1f3083dd7b8ca2 (diff) |
bug fix for matchup
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 202574d8..08626579 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -105,19 +105,15 @@ return require('packer').startup(function(use) use 'alvan/vim-closetag' use { 'glacambre/firenvim', run = function() vim.fn['firenvim#install'](1) end } use 'liuchengxu/vim-which-key' - use 'tpope/vim-sleuth' use 'voldikss/vim-floaterm' - use 'phaazon/hop.nvim' use 'liuchengxu/vista.vim' - -- use { 'npxbr/glow.nvim', run = ':GlowInstall' } - -- figure out how to disable or configure for things with tags like <div></div> because it will highlight all divs - use 'RRethy/vim-illuminate' use 'terrortylor/nvim-comment' - --use 'tpope/vim-commentary' - --use 'suy/vim-context-commentstring' - -- use 'b3nj5m1n/kommentary' - use 'andymass/vim-matchup' - use 'junegunn/goyo.vim' use 'bfredl/nvim-miniyank' use 'brooth/far.vim' + use 'junegunn/goyo.vim' + use 'andymass/vim-matchup' + use 'tpope/vim-sleuth' + use 'phaazon/hop.nvim' + -- use 'RRethy/vim-illuminate' + -- use 'b3nj5m1n/kommentary' end) |