Skip to content

Instantly share code, notes, and snippets.

@daniele-xp
Created May 22, 2019 14:37
Show Gist options
  • Save daniele-xp/ca0b7987a0442dc3abf64a4a609c0f72 to your computer and use it in GitHub Desktop.
Save daniele-xp/ca0b7987a0442dc3abf64a4a609c0f72 to your computer and use it in GitHub Desktop.
setup.sh
#!/bin/bash
#### ESSENTIAL PACKAGES ####
sudo apt-get -y install tmux vim git tree unzip curl
#### PERSONAL VIM DISTRO
curl https://raw.github.com/danielemegna/simsalavim/master/bootstrap -L -o - | sh
#### TMUX.CONF ####
echo "set -g status-bg blue
set -g status-fg white" > ~/.tmux.conf
#### BASHRC ####
echo "
# custom alias
alias ls='ls -GFh --color=auto'
alias ll='ls -la'
alias phpunit='phpunit --colors'" >> ~/.bashrc # this could be .bash_profile on mac os
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment