commit 1b2e604b7e28edfae59db283153d0b7bb550f09f
parent 6198a14b4015d78af1daba359d10f7e6cf579c48
Author: Alex Balgavy <alexander.balgavy@spaceapplications.com>
Date: Fri, 24 Oct 2025 21:27:06 +0200
vim: move plugin to vim-only
Diffstat:
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/vim/vimrc b/vim/vimrc
@@ -26,9 +26,6 @@ Plug 'mattn/emmet-vim', { 'for': ['html', 'css', 'markdown'] }
" Endwise - smart do-end, if-fi, if-end, case-esac, etc.
Plug 'tpope/vim-endwise'
-" Surround - super useful plugin for surrounding stuff with quotes/brackets/tags
-Plug 'tpope/vim-surround'
-
" Eunuch - shell commands but in vim
Plug 'tpope/vim-eunuch'
@@ -150,6 +147,10 @@ if !has('nvim')
" Additional text objects
Plug 'wellle/targets.vim'
+
+ " Surround - super useful plugin for surrounding stuff with quotes/brackets/tags
+ Plug 'tpope/vim-surround'
+
endif
call plug#end()