dotfiles/dotfiles/lib/shellrc.sh

21 lines
622 B
Bash
Raw Normal View History

source_directory_files "$HOME/.lib/shellrc"
[ -s "/usr/local/bin/virtualenvwrapper.sh" ] && . /usr/local/bin/virtualenvwrapper.sh
2016-08-16 17:36:11 -06:00
function j() {
(( $+commands[brew] )) && {
local pfx=$(brew --prefix autojump)
[[ -f "$pfx/etc/autojump.sh" ]] && . "$pfx/etc/autojump.sh"
j "$@"
}
}
environment_variable_exists INSIDE_EMACS && inside_emacs_hook
2016-08-16 21:28:29 -06:00
# XXX: This used to be in shellenv and should be moved back once these
# are faster.
_node_setup
_ruby_setup
# travis completion
2016-08-16 17:36:11 -06:00
# XXX: Disabled to reduce performance impact
# [ -f "$HOME/.travis/travis.sh" ] && source "$HOME/.travis/travis.sh"