Skip to content

Commit e6fef53

Browse files
committed
Update settings
1 parent aae6300 commit e6fef53

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

dot_files/dot_gitconfig

+4-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@
3636
[rerere]
3737
enabled = true
3838
[user]
39-
name = Nolan Warner
40-
39+
name = Nolan W
40+
4141
[push]
4242
default = simple
4343
followTags = true
44+
[init]
45+
defaultBranch = main

dot_files/dot_zshrc

+7-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@ autoload -Uz compinit
2222
compinit
2323

2424
# Setup Homebrew path
25-
eval "$(/opt/homebrew/bin/brew shellenv)"
25+
eval "$(/usr/local/bin/brew shellenv)"
26+
27+
# Set `anyenv`
28+
if command -v anyenv 1>/dev/null 2>&1; then
29+
eval "$(anyenv init -)"
30+
fi
2631

2732
# Set `python` and `pip` to use version installed via `pyenv`
2833
if command -v pyenv 1>/dev/null 2>&1; then
@@ -137,6 +142,7 @@ alias grbimas='git fetch -p; git rbi origin/master'
137142
alias gitk='gitk 2>/dev/null &'
138143

139144
# Bundle Aliases
145+
alias bi='bundle install'
140146
alias bepi='bundle exec pod install'
141147
alias bepru='bundle exec pod repo update'
142148
alias be='bundle exec'

0 commit comments

Comments
 (0)