Last active
November 29, 2021 01:45
-
-
Save joelhooks/cce364199d2532c0d8bb8a93cdc7c685 to your computer and use it in GitHub Desktop.
dotfiles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
email = [email protected] | |
name = Joel Hooks | |
[core] | |
excludesfile = /Users/joel/.gitignore | |
editor = code | |
[init] | |
defaultBranch = main | |
[pull] | |
rebase = false | |
[alias] | |
co = checkout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DS_Store | |
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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