5ce82d1642
Having two sets of aliases is hard to manage, therefore merging bash and zsh aliases prevents duplicate content. Some functions set with those aliases needs to be run with sudo and therefore keeping them as functions does not work. Hence, they have been moved into scripts located in a new dedicated "bin" folder. https://serverfault.com/questions/177699/how-can-i-execute-a-bash-function-with-sudo
47 lines
1.3 KiB
Bash
47 lines
1.3 KiB
Bash
# ~/.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
|
|
|
|
shopt -s checkwinsize
|
|
shopt -s histappend
|
|
export HISTCONTROL=ignoredups
|
|
export CLICOLOR=1
|
|
export EDITOR='vim'
|
|
export PAGER='less'
|
|
export USER_NICKNAME="Rodolphe Breard"
|
|
export DEBEMAIL="packages+deb@what.tf"
|
|
export DEBFULLNAME="$USER_NICKNAME"
|
|
[[ ":$PATH:" == *":$HOME/bin:"* ]] || export PATH="$HOME/bin:$PATH"
|
|
|
|
# Colors
|
|
[ "$CLICOLOR" -ne 0 ] && hash dircolors 2>/dev/null && eval $(dircolors -b)
|
|
|
|
# Command completion
|
|
[ -f /etc/bash_completion ] && . /etc/bash_completion
|
|
|
|
# Prompt
|
|
if [ -f "/usr/bin/liquidprompt" ]; then
|
|
unset PROMPT_COMMAND
|
|
. "/usr/bin/liquidprompt"
|
|
elif [ -f "$HOME/liquidprompt/liquidprompt" ]; then
|
|
unset PROMPT_COMMAND
|
|
. "$HOME/liquidprompt/liquidprompt"
|
|
elif [ "$CLICOLOR" -ne 0 ]; then
|
|
PS1="\[\033[01;31m\]\u\[\033[01;37m\]@\[\033[01;33m\]\h\[\033[01;31m\]->\[\033[00m\] "
|
|
else
|
|
PS1='\u@\h-> '
|
|
fi
|
|
|
|
# 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)
|
|
|
|
# Aliases
|
|
[ -f "$HOME/.aliases" ] && . "$HOME/.aliases"
|