commit 6040a32e23d750b7017cd8f236a506e1e61bac8d
parent 79783eb09c3f57dc8ce2af94bdce5012d4ddcfc9
Author: Alex Balgavy <alexander.balgavy@spaceapplications.com>
Date: Sat, 14 Dec 2024 15:54:21 +0100
nvim: make some plugins vim-only
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/vim/vimrc b/vim/vimrc
@@ -75,14 +75,11 @@ Plug 'junegunn/vim-peekaboo'
" Latex symbol to unicode
Plug 'joom/latex-unicoder.vim'
-" Smooth ^U/^D scrolling
-Plug 'psliwka/vim-smoothie'
-
" Asynchronous popery
Plug 'tpope/vim-dispatch'
" Vimscript testing
-Plug 'tpope/vim-scriptease', { 'on': 'Breakadd' }
+Plug 'tpope/vim-scriptease', { 'on': ['Breakadd', 'Runtime'] }
" Set 'path', 'suffixesadd', 'include', 'includeexpr', 'define'
" automatically for selected filetypes.
@@ -131,6 +128,9 @@ Plug 'qadzek/link.vim'
" Vim-only
if !has('nvim')
+ " Smooth ^U/^D scrolling
+ Plug 'psliwka/vim-smoothie'
+
" Alignment
Plug 'junegunn/vim-easy-align'