Added support for Neovim package manager lazy.nvim (#293)

* Added support for lazy.nvim

From https://github.com/folke/lazy.nvim
Authored-by: Jacob Lane Ledbetter <jledbetter460@gmail.com>
This commit is contained in:
Hugo Haas
2023-01-01 13:55:15 -06:00
committed by GitHub
parent 2ed06691e2
commit d4eaf556f8
2 changed files with 7 additions and 0 deletions

View File

@@ -78,6 +78,8 @@
#arch_package_manager = "pacman"
# Arguments to pass yay (or paru) when updating packages
#yay_arguments = "--nodevel"
# Arguments to pass dnf when updating packages
#dnf_arguments = "--refresh"
#aura_aur_arguments = "-kx"
#aura_pacman_arguments = ""
#show_arch_news = true

View File

@@ -38,6 +38,11 @@ if exists(":CocUpdateSync")
CocUpdateSync
endif
if exists(":Lazy")
echo "Lazy"
Lazy update
endif
" TODO: Should this be after `PackerSync`?
" Not sure how to sequence this after Packer without doing something weird
" with that `PackerComplete` autocommand.