Skip to content

Instantly share code, notes, and snippets.

@remexre
Created May 17, 2017 19:34
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 remexre/323bdae66693fb81e2d8002ab0fc2a9a to your computer and use it in GitHub Desktop.
Save remexre/323bdae66693fb81e2d8002ab0fc2a9a to your computer and use it in GitHub Desktop.
A .zshrc for Silver development
export ZSH="${HOME}/.oh-my-zsh"
ZSH_THEME="ys"
plugins=(common-aliases compleat dircycle git git-extras pip python sudo tmux)
export EDITOR="vim"
export PATH="${HOME}/bin:${HOME}/.local/bin:${HOME}/.cabal/bin:${HOME}/.cargo/bin:${GOPATH}/bin:${PATH}"
export SILVERTRACE=1
source $ZSH/oh-my-zsh.sh
alias hd="hexdump -C"
alias paste.rs="curl --data-binary @- https://paste.rs/"
command -v thefuck >/dev/null && eval "$(thefuck --alias)"
autoload -U +X bashcompinit && bashcompinit
command -v stack >/dev/null && eval "$(stack --bash-completion-script stack)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment