Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@BrainBlasted
Last active December 27, 2017 03:57
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 BrainBlasted/52ae296a707530e34a444d181888b1f2 to your computer and use it in GitHub Desktop.
Save BrainBlasted/52ae296a707530e34a444d181888b1f2 to your computer and use it in GitHub Desktop.
My .zshrc sans some configuration
source /usr/share/zsh/share/antigen.zsh
# Environment variables
export EDITOR=/usr/bin/nvim
export PATH=$PATH:"$HOME/bin"
export PATH=$PATH:"$HOME/.gem/ruby/2.4.0/bin"
export PATH=$PATH:"$HOME/.cargo/bin"
# Aliases
alias ls ='ls --color=auto'
alias xclip="xclip -selection "clipboard""
eval export PATH="/home/chris/.rbenv/shims:${PATH}"
antigen use oh-my-zsh
antigen bundle zsh-users/zsh-completions
# antigen theme NelsonBrandao/absolute
antigen theme https://github.com/geometry-zsh/geometry
# antigen theme agnoster
# antigen theme arrow
CASE_SENSITIVE="true"
DISABLE_AUTO_UPDATE="true"
ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"
plugins=(
git
)
ZSH_CACHE_DIR=$HOME/.cache/oh-my-zsh
if [[ ! -d $ZSH_CACHE_DIR ]]; then
mkdir $ZSH_CACHE_DIR
fi
source $ZSH/oh-my-zsh.sh
antigen apply
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment