forked from scmbreeze/scm_breeze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scm_breeze.sh
35 lines (30 loc) · 1.1 KB
/
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
31
32
33
34
#
# 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
[ -s "$HOME/.scmbrc" ] && . "$HOME/.scmbrc"
# Shared functions
source "$scmbDir/lib/scm_breeze.sh"
# Design assets management
source "$scmbDir/lib/design.sh"
# Git
# ------------------------------------------------------------
if [[ -s "$HOME/.git.scmbrc" ]]; then
# Load git config
source "$HOME/.git.scmbrc"
source "$scmbDir/lib/git/helpers.sh"
source "$scmbDir/lib/git/aliases.sh"
source "$scmbDir/lib/git/keybindings.sh"
source "$scmbDir/lib/git/status_shortcuts.sh"
source "$scmbDir/lib/git/branch_shortcuts.sh"
source "$scmbDir/lib/git/shell_shortcuts.sh"
source "$scmbDir/lib/git/repo_index.sh"
source "$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'
source "$scmbDir/lib/git/fallback/status_shortcuts_shell.sh"
fi
fi