55 lines
1.9 KiB
Bash
55 lines
1.9 KiB
Bash
# vim: set ft=sh:
|
|
|
|
# If not running interactively, don't do anything.
|
|
[[ $- != *i* ]] && return
|
|
|
|
# Source global definitions.
|
|
[[ -f /etc/bashrc ]] && source /etc/bashrc
|
|
[[ -f $HOME/.environ ]] && . $HOME/.environ
|
|
|
|
# Append to history, don't overwrite.
|
|
shopt -s histappend
|
|
|
|
# Load customizations.
|
|
[[ -f $HOME/.bash_aliases ]] && source "$HOME/.bash_aliases"
|
|
[[ -f $HOME/.bash_colors ]] && source "$HOME/.bash_colors"
|
|
[[ -f $HOME/.bash_functions ]] && source "$HOME/.bash_functions"
|
|
|
|
if ! shopt -oq posix; then
|
|
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
|
. /usr/share/bash-completion/bash_completion
|
|
elif [ -f /etc/bash_completion ]; then
|
|
. /etc/bash_completion
|
|
fi
|
|
fi
|
|
while read -r completion ; do source "$completion" ; done < <(find $HOME/.bash_completion/*)
|
|
|
|
# Save working dir on every prompt.
|
|
export PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"; pwd > $HOME/.cwd'
|
|
export PS1="${Blue}\d \A ${Off}${Yellow}\u@\h: ${Off}\w ${Green}\$(parse_branch git)${BRed}\$(parse_branch fossil)${Off}\n-$ "
|
|
|
|
# set variable identifying the chroot you work in (used in the prompt below)
|
|
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
|
|
debian_chroot=$(cat /etc/debian_chroot)
|
|
fi
|
|
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
|
|
|
# check the window size after each command and, if necessary,
|
|
# update the values of LINES and COLUMNS.
|
|
shopt -s checkwinsize
|
|
|
|
# Use fzf if installed.
|
|
export FZF_DEFAULT_OPTS='--border=horizontal --info=inline --no-reverse --height=30%'
|
|
|
|
# Use gpg-agent as ssh agent (and get a nice graphical prompt).
|
|
unset SSH_AGENT_PID
|
|
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
|
|
SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
|
export SSH_AUTH_SOCK
|
|
fi
|
|
export GPG_TTY=$(tty)
|
|
gpg-connect-agent updatestartuptty /bye >/dev/null
|
|
|
|
source '/home/vladanpopovic/.bash_completions/entity-operator.sh'
|
|
|
|
export PATH=/home/vladanpopovic/.tiup/bin:$PATH
|