summaryrefslogtreecommitdiff
path: root/.config/nvim/after/plugin/surround.lua
blob: 859f9846481519aa777c07134bed1d882fcaaf65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require('nvim-surround').setup {
	surrounds = {
		['’'] = {
			add = { '‘', '’' },
		},

		['‘'] = {
			add = { '‘ ', ' ’' },
		},

		['”'] = {
			add = { '“', '”' },
		},

		['“'] = {
			add = { '“ ', ' ”' },
		},
	}
}