Added mini.surround, updated some plugin settings

This commit is contained in:
Norm Rasmussen
2023-02-14 13:40:39 -05:00
parent 07b2f7d562
commit 39508acd96
5 changed files with 47 additions and 15 deletions

View File

@ -32,8 +32,6 @@ map('n', '<leader>q', '<Plug>vem_move_buffer_left', default_opts)
-- Telescope Keymaps
-----------------------------------------------------------
-- For Neovim >= 0.7.0
Mapper = require("nvim-mapper")
local M = Mapper.map

View File

@ -80,9 +80,17 @@ return {
})
end
},
'echasnovski/mini.trailspace',
{
'echasnovski/mini.surround', version = '*'
'echasnovski/mini.trailspace',
config = function()
require('mini.trailspace').setup()
end
},
{
'echasnovski/mini.surround', version = '*',
config = function()
require('mini.surround').setup()
end
},
{
'echasnovski/mini.pairs', branch = 'stable',
@ -150,7 +158,7 @@ return {
initial_width = 45,
hide_statusline = true,
todos = {
initially_closed = true, -- whether the groups should be initially closed on start. You can manually open/close groups later.
initially_closed = false, -- whether the groups should be initially closed on start. You can manually open/close groups later.
}
})
end