Skip to content

Instantly share code, notes, and snippets.

@EinPinsel
Last active September 14, 2022 19:56
Show Gist options
  • Save EinPinsel/873c5d05caaeb186d7c45d40bdc5d3d7 to your computer and use it in GitHub Desktop.
Save EinPinsel/873c5d05caaeb186d7c45d40bdc5d3d7 to your computer and use it in GitHub Desktop.
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
# Theme
ZSH_THEME="pygmalion"
# Uncomment the following line to use case-sensitive completion.
CASE_SENSITIVE="true"
# Uncomment the following line to use hyphen-insensitive completion. Case
# sensitive completion must be off. _ and - will be interchangeable.
HYPHEN_INSENSITIVE="true"
plugins=(git
command-not-found
ubuntu
docker
sudo
compleat
)
source $ZSH/oh-my-zsh.sh
#-------------------------------
# Aliases
#-------------------------------
alias g='grep -in'
alias lsl="ls -l"
alias cl="clear"
alias cls="clear"
alias factlog="tail -f /opt/factorio/factorio-current.log"
alias factstat="sudo systemctl status factorio"
alias factstart="sudo systemctl start factorio"
alias factstop="sudo systemctl stop factorio"
alias factrestart="sudo systemctl restart factorio"
alias sudo='sudo '
alias zshconfig="nano ~/.zshrc"
alias ohmyzsh="nano ~/.oh-my-zsh"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment