summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/surround.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugins/surround.lua')
-rw-r--r--.config/nvim/lua/plugins/surround.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/.config/nvim/lua/plugins/surround.lua b/.config/nvim/lua/plugins/surround.lua
deleted file mode 100644
index 7504211..0000000
--- a/.config/nvim/lua/plugins/surround.lua
+++ /dev/null
@@ -1,21 +0,0 @@
-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
-}