diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2025-07-04 13:19:29 -0400 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2025-07-04 13:19:29 -0400 |
| commit | e7f26a104a2202dfe16f13228613402b6c1686eb (patch) | |
| tree | f7d78a4875691691ac0803da5e3b1cc4d9652f86 /.config/nvim/lua/plugins/surround.lua | |
| parent | 04a6667dcd5949b4fb5daaec06be3eb9e539b04a (diff) | |
clean up nvim
Diffstat (limited to '.config/nvim/lua/plugins/surround.lua')
| -rw-r--r-- | .config/nvim/lua/plugins/surround.lua | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/surround.lua b/.config/nvim/lua/plugins/surround.lua new file mode 100644 index 0000000..ffe4bf3 --- /dev/null +++ b/.config/nvim/lua/plugins/surround.lua @@ -0,0 +1,21 @@ +return { + "echasnovski/mini.surround", + event = "VeryLazy", + config = function() + require("mini.surround").setup({ + mappings = { + add = 'ys', + 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 +} |
