15 lines
238 B
Bash
Executable file
15 lines
238 B
Bash
Executable file
os="$(uname)"
|
|
|
|
case "$os" in
|
|
Darwin)
|
|
$HOME/.config/nixpkgs/home/programs/nvim/update-plugins.sh
|
|
;;
|
|
Linux)
|
|
/etc/nixos/home/programs/nvim/update-plugins.sh
|
|
;;
|
|
*)
|
|
echo "Unsupported OS"
|
|
exit 1
|
|
esac
|
|
|
|
# vim: ft=sh
|