install.fairie/home/.chezmoiscripts/universal/run_onchange_after_39-vim-plugins.sh.tmpl

20 lines
777 B
Cheetah
Raw Normal View History

2023-06-05 01:35:17 +00:00
{{- if ne .host.distro.family "windows" -}}
#!/usr/bin/env bash
# @file VIM Plugin Pre-Install
# @brief Pre-installs the VIM plugins from their git sources
# @description
# This script pre-installs the VIM plugins defined in [`.chezmoidata.yaml`](https://github.com/megabyte-labs/install.doctor/tree/master/home/.chezmoidata.yaml)
# so that VIM does not have to do anything on its first launch.
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
2023-07-12 04:32:13 +00:00
function vimSetup() {
### Run the VIM plugin install routine
if command -v vim > /dev/null; then
2023-07-18 06:35:49 +00:00
vim +PlugInstall +qall > /dev/null && logg success 'Successfully ran `vim +PlugInstall +qall`' || logg error 'Failed to run `vim +PlugInstall +qll`'
2023-07-12 04:32:13 +00:00
fi
}
vimSetup
2023-06-05 01:35:17 +00:00
{{ end -}}