Skip to content

Commit

Permalink
Some clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
aburgel committed Feb 28, 2024
1 parent a6bb9eb commit 346f1b5
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
private

/ssh

/Brewfile.lock.json
2 changes: 1 addition & 1 deletion Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ brew 'awscli'
brew 'bat'
brew 'common-fate/granted/granted'
brew 'csvq'
brew 'dbcli/tap/pgcli'
brew 'pgcli'
brew 'direnv'
brew 'dust'
brew 'fd'
Expand Down
2 changes: 1 addition & 1 deletion rcrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
EXCLUDES="README.md LICENSE"
EXCLUDES="README.md LICENSE script Brewfile Brewfile.lock.json"
DOTFILES_DIRS="$HOME/src/dotfiles"
UNDOTTED="bin"
4 changes: 2 additions & 2 deletions script/setup
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ fi
eval "$(/opt/homebrew/bin/brew shellenv)"

brew update
brew bundle --global --file=./Brewfile
brew bundle

env RCRC=$HOME/src/dotfiles/rcrc rcup
RCRC=$HOME/src/dotfiles/rcrc rcup

if ! grep -q "/opt/homebrew/bin/zsh" /etc/shells ; then
echo "Adding zsh to list of allowed shells"
Expand Down
1 change: 1 addition & 0 deletions zprofile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
eval "$(/opt/homebrew/bin/brew shellenv)"
2 changes: 1 addition & 1 deletion zsh/configs/cargo
Original file line number Diff line number Diff line change
@@ -1 +1 @@
. "$HOME/.cargo/env"
if [ -f "$HOME/.cargo/env" ]; then . "$HOME/.cargo/env"; fi
6 changes: 0 additions & 6 deletions zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,3 @@ export PATH="$HOME/bin:$PATH"
eval "$(direnv hook zsh)"

[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh

# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/aburgel/Downloads/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/aburgel/Downloads/google-cloud-sdk/path.zsh.inc'; fi

# The next line enables shell command completion for gcloud.
if [ -f '/Users/aburgel/Downloads/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/aburgel/Downloads/google-cloud-sdk/completion.zsh.inc'; fi

0 comments on commit 346f1b5

Please sign in to comment.