dotfiles/.bashrc

47 lines
1.4 KiB
Bash

# If not running interactively, don't do anything
[[ $- =~ i ]] || return
# Make less more friendly for non-text input files
[ -x /usr/bin/lesspipe.sh ] && eval "$(SHELL=/bin/sh lesspipe.sh)"
# Define where cd looks for targets
[ -d ~/Documents/Code/GitHub ] && CDPATH='.:~/Documents/Code/GitHub'
# Set the primary prompt string
# shellcheck disable=SC2154
PS1='┌──[\[\e[m\]\[\033[38;5;12m\]\t\[\e[m\]\[\e[m\]]──$(test 0 -eq $? || printf "[\033[m\033[38;5;196m$_\033[0m]──")[\[\e[m\]\[\033[38;5;166m\]\u\[\e[m\]\[\e[m\]:\[\e[m\]\[\033[38;5;168m\]\w\[\e[m\]\[\e[m\]\[\033[38;5;150m\]$(b="$(git branch --show-current 2>/dev/null)" && (git diff --quiet && printf " ($b)" || printf " {$b}"))\[\e[m\]]\n└─➤ \$ \[\e[m\]'
# Don't record some commands
HISTIGNORE='&:[ ]*:exit:ls:cd:history:clear'
# Remove old duplicate commands
HISTCONTROL='erasedups'
# Move the history file away from $HOME
HISTFILE="$XDG_CACHE_HOME/.bash_history"
# Print time of command in history
HISTTIMEFORMAT='{%Y-%m-%d %T} '
# Automatically trim long paths in the prompt
PROMPT_DIRTRIM=2
# Don't complete files with the following extensions
FIGNORE='~:.o:.swp:.pyc'
# Alias definitions
test -f ~/.bash_aliases && . "$_"
# Travis completion
test -f ~/.travis/travis.sh && . "$_"
# FZF completion
test -f /usr/share/fzf/completion.bash && . "$_"
# Uni configuration
test -f ~/.unirc.sh && . "$_"
: # ensure 0 exit code
# vim:set wrap lbr bri briopt=shift\:4: