26 lines
499 B
Bash
26 lines
499 B
Bash
# ~/.bashrc - loaded during interactive shells
|
|
|
|
# Source global definitions if available
|
|
if [ -f /etc/bashrc ]; then
|
|
. /etc/bashrc
|
|
fi
|
|
|
|
# Source user aliases
|
|
if [ -f ~/.bash_aliases ]; then
|
|
. ~/.bash_aliases
|
|
fi
|
|
|
|
# Color prompt
|
|
PS1='\[\e[0;36m\]\u@\h \[\e[0;33m\]\w\[\e[0m\] \$ '
|
|
|
|
# History settings
|
|
HISTSIZE=10000
|
|
HISTFILESIZE=20000
|
|
HISTCONTROL=ignoredups:erasedups
|
|
shopt -s histappend
|
|
|
|
# Enable bash completion if available
|
|
if [ -f /etc/bash_completion ]; then
|
|
. /etc/bash_completion
|
|
fi
|