2013-03-23 14:48:31 +01:00
|
|
|
# ~/.bashrc: executed by bash(1) for non-login shells.
|
|
|
|
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
|
|
|
|
# for examples
|
|
|
|
|
|
|
|
# If not running interactively, don't do anything
|
|
|
|
[ -z "$PS1" ] && return
|
|
|
|
|
2015-02-13 18:31:43 +01:00
|
|
|
shopt -s checkwinsize
|
|
|
|
shopt -s histappend
|
|
|
|
export HISTCONTROL=ignoredups
|
|
|
|
export CLICOLOR=1
|
2015-10-17 10:43:06 +02:00
|
|
|
export EDITOR='vim'
|
2015-02-13 18:31:43 +01:00
|
|
|
export PAGER='less'
|
2013-03-23 14:48:31 +01:00
|
|
|
export USER_NICKNAME="Rodolphe Breard"
|
2015-02-13 18:31:43 +01:00
|
|
|
export DEBEMAIL="packages+deb@what.tf"
|
2013-03-23 14:48:31 +01:00
|
|
|
export DEBFULLNAME="$USER_NICKNAME"
|
2015-09-13 17:43:29 +02:00
|
|
|
[[ ":$PATH:" == *":$HOME/bin:"* ]] || export PATH="$HOME/bin:$PATH"
|
2013-04-24 17:16:14 +02:00
|
|
|
|
2013-03-23 14:48:31 +01:00
|
|
|
# Colors
|
2015-02-13 18:31:43 +01:00
|
|
|
[ "$CLICOLOR" -ne 0 ] && hash dircolors 2>/dev/null && eval $(dircolors -b)
|
2013-03-23 14:48:31 +01:00
|
|
|
|
2015-02-13 18:31:43 +01:00
|
|
|
# Command completion
|
|
|
|
[ -f /etc/bash_completion ] && . /etc/bash_completion
|
2013-04-01 22:18:46 +02:00
|
|
|
|
2015-02-13 18:31:43 +01:00
|
|
|
# Prompt
|
2015-10-20 13:52:26 +02:00
|
|
|
if [ -f "/usr/bin/liquidprompt" ]; then
|
2014-01-14 12:23:34 +01:00
|
|
|
unset PROMPT_COMMAND
|
2015-10-20 13:52:26 +02:00
|
|
|
. "/usr/bin/liquidprompt"
|
2014-08-26 11:38:49 +02:00
|
|
|
elif [ -f "$HOME/liquidprompt/liquidprompt" ]; then
|
|
|
|
unset PROMPT_COMMAND
|
2015-02-13 18:31:43 +01:00
|
|
|
. "$HOME/liquidprompt/liquidprompt"
|
2015-10-20 13:52:26 +02:00
|
|
|
elif [ "$CLICOLOR" -ne 0 ]; then
|
|
|
|
PS1="\[\033[01;31m\]\u\[\033[01;37m\]@\[\033[01;33m\]\h\[\033[01;31m\]->\[\033[00m\] "
|
2014-01-14 12:23:34 +01:00
|
|
|
else
|
2015-10-20 13:52:26 +02:00
|
|
|
PS1='\u@\h-> '
|
2013-03-23 14:48:31 +01:00
|
|
|
fi
|
2013-08-23 11:43:48 +02:00
|
|
|
|
2013-11-13 15:39:59 +01:00
|
|
|
# GPG Agent
|
|
|
|
if [ -f "${HOME}/.gpg-agent-info" ]; then
|
|
|
|
. "${HOME}/.gpg-agent-info"
|
|
|
|
export GPG_AGENT_INFO
|
|
|
|
export SSH_AUTH_SOCK
|
|
|
|
fi
|
|
|
|
export GPG_TTY=$(tty)
|
2015-02-13 18:31:43 +01:00
|
|
|
|
|
|
|
# Aliases
|
|
|
|
[ -f "$HOME/.bash_aliases" ] && . ~/.bash_aliases
|