2024-09-11 16:55:49 +02:00
|
|
|
return {
|
|
|
|
'kylechui/nvim-surround',
|
|
|
|
version = '*', -- Use for stability; omit to use `main` branch for the latest features
|
|
|
|
event = 'VeryLazy',
|
|
|
|
config = function()
|
|
|
|
require('nvim-surround').setup {
|
|
|
|
-- Configuration here, or leave empty to use defaults
|
2024-11-18 15:53:17 +01:00
|
|
|
surrounds = {
|
|
|
|
['('] = false,
|
|
|
|
},
|
|
|
|
aliases = {
|
|
|
|
['('] = ')',
|
|
|
|
},
|
2024-09-11 16:55:49 +02:00
|
|
|
}
|
|
|
|
end,
|
|
|
|
}
|