summaryrefslogtreecommitdiff
path: root/archive/.config/nvim/lua/plugins/surround.lua
blob: 7504211c43396172754317c89ad7d9b26619d199 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
return {
    "echasnovski/mini.surround",
    event = "VeryLazy",
    config = function()
        require("mini.surround").setup({
			mappings = {
				add = '',
				delete = 'ds',
				find = '',
				find_left = '',
				highlight = '',
				replace = '',
				update_n_lines = '',

				-- Add this only if you don't want to use extended mappings
				suffix_last = '',
				suffix_next = '',
			}
        })
    end
}