home: vim: migrate to 'nvim-surround'
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
It's potentially more customizable, and integrates with tree-sitter. It also allows for buffer/filetype specific pairs.
This commit is contained in:
parent
1151b2e5ef
commit
b582aff866
|
@ -42,7 +42,6 @@ in
|
||||||
vim-git # Sane git syntax files
|
vim-git # Sane git syntax files
|
||||||
vim-repeat # Enanche '.' for plugins
|
vim-repeat # Enanche '.' for plugins
|
||||||
vim-rsi # Readline mappings
|
vim-rsi # Readline mappings
|
||||||
vim-surround # Deal with pairs
|
|
||||||
vim-unimpaired # Some ex command mappings
|
vim-unimpaired # Some ex command mappings
|
||||||
vim-vinegar # Better netrw
|
vim-vinegar # Better netrw
|
||||||
|
|
||||||
|
@ -83,6 +82,7 @@ in
|
||||||
# UX improvements
|
# UX improvements
|
||||||
dressing-nvim # Integrate native UI hooks with Telescope etc...
|
dressing-nvim # Integrate native UI hooks with Telescope etc...
|
||||||
gitsigns-nvim # Fast git UI integration
|
gitsigns-nvim # Fast git UI integration
|
||||||
|
nvim-surround # Deal with pairs, now in Lua
|
||||||
telescope-fzf-native-nvim # Use 'fzf' fuzzy matching algorithm
|
telescope-fzf-native-nvim # Use 'fzf' fuzzy matching algorithm
|
||||||
telescope-lsp-handlers-nvim # Use 'telescope' for various LSP actions
|
telescope-lsp-handlers-nvim # Use 'telescope' for various LSP actions
|
||||||
telescope-nvim # Fuzzy finder interface
|
telescope-nvim # Fuzzy finder interface
|
||||||
|
|
5
home/vim/plugin/settings/surround.vim
Normal file
5
home/vim/plugin/settings/surround.vim
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
lua << EOF
|
||||||
|
require("nvim-surround").setup({
|
||||||
|
-- No configuration at the moment
|
||||||
|
})
|
||||||
|
EOF
|
Loading…
Reference in a new issue