Skip to content

Instantly share code, notes, and snippets.

@keremcankabadayi
Last active March 26, 2018 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keremcankabadayi/3656a798eb3b7e01daab84dd102fcde8 to your computer and use it in GitHub Desktop.
Save keremcankabadayi/3656a798eb3b7e01daab84dd102fcde8 to your computer and use it in GitHub Desktop.
sudo apt-get update && sudo apt-get install zsh
zsh --version
chsh -s $(which zsh)
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
cd $ZSH_CUSTOM/plugins/
wget https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins/colorize
wget https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins/copydir
git clone https://github.com/zsh-users/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting
git clone https://github.com/trapd00r/zsh-syntax-highlighting-filetypes
plugins=(
git copydir colorize zsh-autosuggestions zsh-syntax-highlighting zsh-syntax-highlighting-filetypes
)
alias c="clear"
alias elasticsearch="/usr/share/elasticsearch/bin/elasticsearch"
alias elasticsearch-plugin="/usr/share/elasticsearch/bin/elasticsearch-plugin"
alias logstash="/usr/share/logstash/bin/logstash"
alias kibana="/usr/share/kibana/bin/kibana"
alias estatus="sudo systemctl status elasticsearch"
alias kstatus="sudo systemctl status kibana"
alias nstatus="sudo systemctl status nginx"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment