Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy committed Mar 11, 2022
1 parent 0819ae5 commit ff0b191
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 16 deletions.
12 changes: 0 additions & 12 deletions bash/.bash_profile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ unset file
# TODO: switch to zsh completely, using chsh -s /bin/zsh
export BASH_SILENCE_DEPRECATION_WARNING=1

# Travis CI gem.
[ -f ~/.travis/travis.sh ] && . ~/.travis/travis.sh

# Load the default .profile
[[ -s "$HOME/.profile" ]] && . "$HOME/.profile"

Expand All @@ -26,11 +23,6 @@ if [ -f ~/dotfiles/bin/wp-completion.bash ]; then
. ~/dotfiles/bin/wp-completion.bash;
fi;

# Heroku completion
if [ -f ~/Library/Caches/heroku/autocomplete/bash_setup ]; then
. ~/Library/Caches/heroku/autocomplete/bash_setup;
fi;

# Wakatime
if [ -f ~/Workspace/GitHub/bash-wakatime/bash-wakatime.sh ]; then
. ~/Workspace/GitHub/bash-wakatime/bash-wakatime.sh;
Expand All @@ -50,9 +42,5 @@ if [ -f /usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion
. /usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.bash.inc
fi;

# nvm
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"

# Autocorrect typos in path names when using `cd`
shopt -s cdspell;
8 changes: 4 additions & 4 deletions git/.gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,6 @@
name = Pascal Birchler
email = hello@pascalbirchler.ch

[include]
# use separate file for username / github token / etc.
# at the end so it can override any of the above configs
path = ~/.gitconfig.local
[pull]
rebase = true

Expand All @@ -148,3 +144,7 @@
[url "https://github.com/"]
pullInsteadOf = "git@github.com":

[include]
# use separate file for username / github token / etc.
# at the end so it can override any of the above configs
path = ~/.gitconfig.local

0 comments on commit ff0b191

Please sign in to comment.