Created
May 22, 2019 14:37
-
-
Save daniele-xp/ca0b7987a0442dc3abf64a4a609c0f72 to your computer and use it in GitHub Desktop.
setup.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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