Files
dotfiles/.bashrc
Johannes Knopp 133fc547dc Initial commit
2024-10-29 14:10:21 +01:00

10 lines
261 B
Bash

alias vim='nvim'
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\[\033[33m\]$(parse_git_branch)\[\033[00m\]\$ '