# Give me a nice prompt that tells me my pwd
export PS1="\[\e[1;32m\]\u\[\e[0m\]@\e[1;36m\]\h\[\e[0m\] [\w]\n% "


# Keep me out of trouble!
alias rm="rm -i"
alias mv="mv -i"
alias cp="cp -i"


# customize list output
alias ls="ls -FGh"
export LSCOLORS="gxfxcxdxCxegedabagacad"


# Launch Jupyter notebook in Safari with my custom css
alias jnb="export JUPYTER_CONFIG_DIR=\"$HOME/.jupyter_custom\"; jupyter notebook --browser=safari"


# Convert Jupyter notebook to HTML
alias nbc="jupyter nbconvert --to html"



