dotfiles/bash/.bashrc

33 lines
535 B
Bash
Raw Normal View History

2019-01-28 02:46:29 +00:00
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls -G'
2019-01-28 02:46:29 +00:00
PS1='[\u@\h \W]\$ '
2019-02-05 11:12:12 +00:00
if [ -f /usr/share/nvm/init-nvm.sh ];
then
source /usr/share/nvm/init-nvm.sh
fi
GPG_TTY=$(tty)
export GPG_TTY
if [ -f /usr/local/bin/virtualenvwrapper.sh ];
then
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
fi
2019-02-05 11:12:12 +00:00
if [ -x "$(command -v direnv)" ];
then
eval "$(direnv hook bash)"
fi
alias edit='emacsclient -nw'
EDITOR='emacsclient -nw'
export EDITOR