diff options
-rwxr-xr-x | install.sh | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -11,19 +11,21 @@ if [[ -f /etc/os-release ]]; then case "$ID_LIKE" in debian) - echo "Running on debian-family. Installing core packages" + echo "Running on debian-family.." package_manager=apt - sudo $package_manager install -y vim-nox git stow curl ranger tmux + vim="vim-nox" ;; fedora) - echo "Running on debian-family. Installing core packages" + echo "Running on debian-family.." package_manager=fedora - sudo $package_manager install -y vim-enhanced git stow curl ranger tmux + vim="vim-enhanced" esac else echo "You are running an unrecognized family of os. Quitting..." exit 1 fi +echo "Installing packages" +sudo $package_manager install -y $vim git stow curl ranger tmux # use gnu stow to symlink config files to home directory stow bash git ranger shellenv tmux vim |