forked from scmbreeze/scm_breeze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscm_breeze.sh
31 lines (26 loc) · 892 Bytes
/
scm_breeze.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# scm_breeze.sh must be sourced, and not executed in a sub-shell.
# e.g "source ~/.scm_breeze/scm_breeze.sh"
# ------------------------------------------------------------
export scmbDir="$(dirname ${BASH_SOURCE:-$0})"
# Load config
. "$HOME/.scmbrc"
# Shared functions
. "$scmbDir/lib/scm_breeze.sh"
# Design assets management
. "$scmbDir/lib/design.sh"
# Git
# ------------------------------------------------------------
if [[ -s "$HOME/.git.scmbrc" ]]; then
# Load git config
. "$HOME/.git.scmbrc"
. "$scmbDir/lib/git/aliases_and_bindings.sh"
. "$scmbDir/lib/git/status_shortcuts.sh"
. "$scmbDir/lib/git/repo_index.sh"
. "$scmbDir/lib/git/tools.sh"
if ! type ruby > /dev/null 2>&1; then
# If Ruby is not installed, fall back to the
# slower bash/zsh implementation of 'git_status_shortcuts'
. "$scmbDir/lib/git/fallback/status_shortcuts_shell.sh"
fi
fi