aboutsummaryrefslogtreecommitdiff
path: root/core/plugins.vim
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2023-08-27 23:13:42 +0200
committerjdhao <jdhao@hotmail.com>2023-08-27 23:14:31 +0200
commit1391ca7ff153636476bae6ffbf16aec076e2d191 (patch)
tree9739034aef482a2123514fc049bc91210a4beb5b /core/plugins.vim
parent6a6f8ff5974447fd452f5d8bf20dd090dfdd8ec9 (diff)
feat: switch from packer.nvim to lazy.nvim
Diffstat (limited to 'core/plugins.vim')
-rw-r--r--core/plugins.vim10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/plugins.vim b/core/plugins.vim
index 64d1b29..b3bc237 100644
--- a/core/plugins.vim
+++ b/core/plugins.vim
@@ -7,10 +7,10 @@ lua require('plugins')
" To use these shortcuts: first activate command line with `:`, then input the
" short alias, e.g., `pi`, then press <space>, the alias will be expanded to
" the full command automatically.
-call utils#Cabbrev('pi', 'PackerInstall')
-call utils#Cabbrev('pud', 'PackerUpdate')
-call utils#Cabbrev('pc', 'PackerClean')
-call utils#Cabbrev('ps', 'PackerSync')
+call utils#Cabbrev('pi', 'Lazy install')
+call utils#Cabbrev('pud', 'Lazy update')
+call utils#Cabbrev('pc', 'Lazy clean')
+call utils#Cabbrev('ps', 'Lazy sync')
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" configurations for vim script plugin "
@@ -401,7 +401,7 @@ function! s:wilder_init() abort
\ 'apply_incsearch_fix': 0,
\ }))
catch /^Vim\%((\a\+)\)\=:E117/
- echohl Error |echomsg "Wilder.nvim missing: run :PackerSync to fix."|echohl None
+ echohl Error |echomsg "Wilder.nvim missing"| echohl None
endtry
endfunction