Skip to content

Instantly share code, notes, and snippets.

@0xDing
Created August 10, 2019 09:33
Show Gist options
  • Save 0xDing/8c46593df591af9e11d5fad397d7ec7c to your computer and use it in GitHub Desktop.
Save 0xDing/8c46593df591af9e11d5fad397d7ec7c to your computer and use it in GitHub Desktop.
oortcast macos-init zshrc
# If you come from bash you might have to change your $PATH.
export XDG_CONFIG_HOME="/Users/ding/.config"
# Path to your oh-my-zsh installation.
export ZSH="/Users/ding/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="sunaku-zen"
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
plugins=(git osx docker encode64)
source $ZSH/oh-my-zsh.sh
# User configuration
# Compilation flags
export LC_ALL=en_US.UTF-8
export ARCHFLAGS="-arch x86_64"
eval $(thefuck --alias)
alias git=hub
alias ls="exa -G"
alias ll="exa -lah"
alias ping="prettyping --nolegend"
alias top="glances"
alias cat="bat -p"
alias less="bat"
alias grep='rg --hidden --color always'
alias untar="tar xvf"
# Little process finder, usage: procs <process name>
alias procs='ps aux | grep -i'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment