From c6b6f05caa7da4b90c291dce9258a1f78b4a0cd6 Mon Sep 17 00:00:00 2001 From: He4eT Date: Mon, 8 Apr 2024 01:20:13 +0200 Subject: [PATCH] nvim: add surround.vim --- nvim/init.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/nvim/init.lua b/nvim/init.lua index 0e3bee0..dfc19ae 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -11,7 +11,8 @@ npx @johnnymorganz/stylua-bin ./init.lua ├─ cfg_autocmds: Autocomands ├─ cfg_keymaps: General keymaps └─ cfg_lazy: Plugin manager -   ├─ cfg_lazy_vim-sleuth: Detect tabstop and shiftwidth automatically +   ├─ cfg_lazy_vim_sleuth: Detect tabstop and shiftwidth automatically +   ├─ cfg_lazy_vim_surround: Delete, change and add such surroundings in pairs   ├─ cfg_lazy_colorizer: Color highlighter   ├─ cfg_lazy_comment: Toggles linewise and blockwise comments   ├─ cfg_lazy_leap: Leap motion plugin @@ -184,8 +185,10 @@ end vim.opt.rtp:prepend(lazypath) require('lazy').setup({ - --[[ cfg_lazy_vim-sleuth: Detect tabstop and shiftwidth automatically ]] + --[[ cfg_lazy_vim_sleuth: Detect tabstop and shiftwidth automatically ]] 'tpope/vim-sleuth', + --[[ cfg_lazy_vim_surround: Delete, change and add surroundings in pairs ]] + 'tpope/vim-surround', --[[ cfg_lazy_colorizer: Color highlighter ]] 'norcalli/nvim-colorizer.lua', --[[ cfg_lazy_comment: Toggles linewise and blockwise comments ]]