summaryrefslogtreecommitdiff
path: root/.config/nvim/after/plugin/surround.lua
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-06-10 23:07:28 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-06-10 23:07:28 +0200
commit511efe89ed084bc922ae142d32e08427859198f4 (patch)
treefef9294b6056b6cf972ea5e689f70da8184fafae /.config/nvim/after/plugin/surround.lua
parent64e2e90abdca04743558e3baf42a6b714b440bd0 (diff)
nvim: Completely rewrite my configuration
Diffstat (limited to '.config/nvim/after/plugin/surround.lua')
-rw-r--r--.config/nvim/after/plugin/surround.lua27
1 files changed, 0 insertions, 27 deletions
diff --git a/.config/nvim/after/plugin/surround.lua b/.config/nvim/after/plugin/surround.lua
deleted file mode 100644
index 605b1eb..0000000
--- a/.config/nvim/after/plugin/surround.lua
+++ /dev/null
@@ -1,27 +0,0 @@
-require('nvim-surround').setup {
- surrounds = {
- ['’'] = {
- add = { '‘', '’' },
- find = '‘[^‘’]*’',
- delete = '^(‘)().-(’)()$'
- },
-
- ['‘'] = {
- add = { '‘ ', ' ’' },
- find = '‘[^‘’]*’',
- delete = '^(‘ *)().-( *’)()$'
- },
-
- ['”'] = {
- add = { '“', '”' },
- find = '“[^“”]*”',
- delete = '^(“)().-(”)()$'
- },
-
- ['“'] = {
- add = { '“ ', ' ”' },
- find = '“[^“”]*”',
- delete = '^(“ *)().-( *”)()$'
- },
- }
-}