blob: 13972823fcd2187aa8148d23ac65d17bd9309d9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
# ~/.bashrc
#
# Bash executes this file on interactive non-login shell
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Add `~/bin` to the `$PATH`
export PATH="$HOME/bin:$PATH"
# Load the shell dotfiles
for file in ~/.{aliases,bash_prompt}; do
[ -r "$file" ] && [ -f "$file" ] && source "$file"
done
unset file
# Add tab completion
[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
|