-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_bashrc
More file actions
16 lines (14 loc) · 749 Bytes
/
Copy pathdot_bashrc
File metadata and controls
16 lines (14 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# shellcheck shell=bash
# if not interactive return early
[[ $- != *i* ]] && return
# source shared code
# shellcheck source=dot_config/shell/env.sh
[[ -f "${HOME}/.config/shell/env.sh" ]] && source ~/.config/shell/env.sh
# shellcheck source=dot_config/shell/aliases.sh
[[ -f "${HOME}/.config/shell/aliases.sh" ]] && source ~/.config/shell/aliases.sh
# shellcheck source=dot_config/shell/functions.sh
[[ -f "${HOME}/.config/shell/functions.sh" ]] && source ~/.config/shell/functions.sh
# shellcheck source=dot_config/shell/completions.sh
[[ -f "${HOME}/.config/shell/completions.sh" ]] && source ~/.config/shell/completions.sh
# shellcheck source=dot_config/shell/init.sh
[[ -f "${HOME}/.config/shell/init.sh" ]] && source ~/.config/shell/init.sh