home: vim: migrate to 'nvim-surround'

It's potentially more customizable, and integrates with tree-sitter. It
also allows for buffer/filetype specific pairs.
This commit is contained in:
Bruno BELANYI 2022-08-31 15:50:22 +02:00
parent e1e5a7c900
commit 4216c654e7
2 changed files with 6 additions and 1 deletions

View File

@ -42,7 +42,6 @@ in
vim-git # Sane git syntax files
vim-repeat # Enanche '.' for plugins
vim-rsi # Readline mappings
vim-surround # Deal with pairs
vim-unimpaired # Some ex command mappings
vim-vinegar # Better netrw
@ -83,6 +82,7 @@ in
# UX improvements
dressing-nvim # Integrate native UI hooks with Telescope etc...
gitsigns-nvim # Fast git UI integration
nvim-surround # Deal with pairs, now in Lua
telescope-fzf-native-nvim # Use 'fzf' fuzzy matching algorithm
telescope-lsp-handlers-nvim # Use 'telescope' for various LSP actions
telescope-nvim # Fuzzy finder interface

View File

@ -0,0 +1,5 @@
lua << EOF
require("nvim-surround").setup({
-- No configuration at the moment
})
EOF