aboutsummaryrefslogtreecommitdiff
path: root/home/dot_config/nvim/run_once_bootstrap.sh.tmpl
blob: 9361a709d2377ff0c61adfbfc9a469cd33728edc (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# vim:ft=sh

# {{ include (joinPath .chezmoi.sourceDir "dot_config/nvim/init.vim") | sha1sum }}

[ -z "$(command -v nvim)" ] && exit 0

echo "updating nvim plugins"
nvim --headless +"PlugInstall --sync" +qa

exit 0