diff options
author | Jackson Taylor <jackson@jacksontaylor.xyz> | 2022-02-03 22:22:11 -0500 |
---|---|---|
committer | Jackson Taylor <jackson@jacksontaylor.xyz> | 2022-02-03 22:28:08 -0500 |
commit | 7888574b1c18c77b75e5c6c5930cd0709f16898a (patch) | |
tree | ed4214ac5696c5641a1d8e3d335d68f7ca72f6d2 /.bashrc | |
parent | 7434b9127257627a48b7520effd46fb389f1fddd (diff) |
Diffstat (limited to '.bashrc')
-rw-r--r-- | .bashrc | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/.bashrc b/.bashrc deleted file mode 100644 index 54ff0a2..0000000 --- a/.bashrc +++ /dev/null @@ -1,20 +0,0 @@ -if [[ $- != *i* ]] ; then - # Shell is non-interactive. Be done now! - return -fi - -# Vi editing mode -set -o vi - -# Aliases and stuff -source $HOME/.bash_aliases - -# used in PS1 to show off git branch information -parse_git_branch() { - git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' -} - -# PS1 format -export PS1="\[$(tput bold)\]\[$(tput setaf 1)\][\[$(tput setaf 3)\]\u\[$(tput setaf 2)\]@\[$(tput setaf 4)\]\h \[$(tput setaf 5)\]\w\[$(tput setaf 1)\]]\$(parse_git_branch)\[$(tput setaf 7)\] \\$ \[$(tput sgr0)\]" - -source $HOME/code/japh/japh |