81 lines
2.2 KiB
81 lines
2.2 KiB
|
|
|
|
# to add your own non-committed machine-specific settings, |
|
# use ~/.extra |
|
|
|
|
|
|
|
# This is a good idea generally |
|
PATH="/usr/local/bin:$PATH" |
|
|
|
if [[ "$HOSTNAME" == "maya" ]]; then |
|
|
|
# Setting PATH for homebrew |
|
PATH="/Users/charles/.local/bin:$PATH" |
|
PATH="/Users/charles/Library/Python/3.6/bin:$PATH" |
|
|
|
# Set up google cloud SDK |
|
F1="/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.bash.inc" |
|
F2="/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.bash.inc" |
|
if [[ -f $F1 ]]; then |
|
source $F1 |
|
fi |
|
if [[ -f $F2 ]]; then |
|
source $F2 |
|
fi |
|
|
|
fi |
|
|
|
export PATH |
|
|
|
# Just let homebrew take care of PYTHONPATH, yeah? |
|
# But if you really needed to, you could set it here. |
|
|
|
# Append to the Bash history file, rather than overwriting it |
|
shopt -s histappend; |
|
|
|
# Bash history |
|
shopt -s cmdhist; |
|
|
|
|
|
|
|
|
|
############################# |
|
# modified mathias |
|
|
|
# Load the shell dotfiles, and then some: |
|
# * ~/.path can be used to extend `$PATH`. |
|
# * ~/.extra can be used for other settings you don’t want to commit. |
|
for file in ~/.{path,bash_prompt,exports,aliases,functions,extra}; do |
|
[ -r "$file" ] && [ -f "$file" ] && source "$file"; |
|
done; |
|
unset file; |
|
|
|
# Case-insensitive globbing (used in pathname expansion) |
|
shopt -s nocaseglob; |
|
|
|
# Autocorrect typos in path names when using `cd` |
|
shopt -s cdspell; |
|
|
|
# Enable some Bash 4 features when possible: |
|
# * `autocd`, e.g. `**/qux` will enter `./foo/bar/baz/qux` |
|
# * Recursive globbing, e.g. `echo **/*.txt` |
|
for option in autocd globstar; do |
|
shopt -s "$option" 2> /dev/null; |
|
done; |
|
|
|
# Add tab completion for many Bash commands |
|
if which brew &> /dev/null && [ -f "$(brew --prefix)/share/bash-completion/bash_completion" ]; then |
|
source "$(brew --prefix)/share/bash-completion/bash_completion"; |
|
elif [ -f /etc/bash_completion ]; then |
|
source /etc/bash_completion; |
|
fi; |
|
|
|
# Enable tab completion for `g` by marking it as an alias for `git` |
|
if type _git &> /dev/null && [ -f /usr/local/etc/bash_completion.d/git-completion.bash ]; then |
|
complete -o default -o nospace -F _git g; |
|
fi; |
|
|
|
# Add tab completion for SSH hostnames based on ~/.ssh/config, ignoring wildcards |
|
[ -e "$HOME/.ssh/config" ] && complete -o "default" -o "nospace" -W "$(grep "^Host" ~/.ssh/config | grep -v "[?*]" | cut -d " " -f2- | tr ' ' '\n')" scp sftp ssh; |
|
|
|
|