-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bashrc
More file actions
21 lines (16 loc) · 673 Bytes
/
.bashrc
File metadata and controls
21 lines (16 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# ********************************************
# DO NOT PRINT ANY OUTPUT FROM THIS FILE!
# ********************************************
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
# load aliases, functions, and variables
[ -f $HOME/.bash/aliases.sh ] && source $HOME/.bash/aliases.sh
[ -f $HOME/.bash/functions.sh ] && source $HOME/.bash/functions.sh
[ -f $HOME/.bash/variables.sh ] && source $HOME/.bash/variables.sh
# load fzf auto-completion and key bindings
[ -f $HOME/.fzf.bash ] && source $HOME/.fzf.bash
# load cdo auto-completions
[ -f $HOME/.cdo/cdoCompletion.bash ] && source $HOME/.cdo/cdoCompletion.bash