aboutsummaryrefslogtreecommitdiff
path: root/autoload
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 /autoload
parent6a6f8ff5974447fd452f5d8bf20dd090dfdd8ec9 (diff)
feat: switch from packer.nvim to lazy.nvim
Diffstat (limited to 'autoload')
-rw-r--r--autoload/utils.vim4
1 files changed, 1 insertions, 3 deletions
diff --git a/autoload/utils.vim b/autoload/utils.vim
index b09b55d..9b4bb90 100644
--- a/autoload/utils.vim
+++ b/autoload/utils.vim
@@ -141,9 +141,7 @@ function! utils#Inside_git_repo() abort
if match(res, 'true') == -1
return v:false
else
- " Manually trigger a special user autocmd InGitRepo (to use it for
- " lazyloading of fugitive by packer.nvim).
- " See also https://github.com/wbthomason/packer.nvim/discussions/534.
+ " Manually trigger a special user autocmd InGitRepo (used lazyloading.
doautocmd User InGitRepo
return v:true
endif