Skip to content

Instantly share code, notes, and snippets.

@joelhooks
Last active November 29, 2021 01:45
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 joelhooks/cce364199d2532c0d8bb8a93cdc7c685 to your computer and use it in GitHub Desktop.
Save joelhooks/cce364199d2532c0d8bb8a93cdc7c685 to your computer and use it in GitHub Desktop.
dotfiles
[user]
email = joelhooks@gmail.com
name = Joel Hooks
[core]
excludesfile = /Users/joel/.gitignore
editor = code
[init]
defaultBranch = main
[pull]
rebase = false
[alias]
co = checkout
.DS_Store
.idea
export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/Users/joel/.oh-my-zsh"
ZSH_THEME="robbyrussell"
# Plugins
# Add wisely, as too many plugins slow down shell startup.
plugins=(git zsh-syntax-highlighting rails ruby history emoji encode64 jsontools macos)
source $ZSH/oh-my-zsh.sh
# User configuration
# Setup Pure Prompt
fpath+=$HOME/.zsh/pure
autoload -U promptinit; promptinit
prompt pure
# load nodenv for managing node.js versions
eval "$(nodenv init -)"
# load rbenv for managing ruby versions
eval "$(rbenv init - zsh)"
# this adds npm executables to the path so they can be run
path+=('/Users/joel/.npm-global/bin')
export PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment