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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
--- a/bashrc
+++ b/bashrc
@@ -5,7 +5,7 @@ case $- in
esac
# Path to your oh-my-bash installation.
-export OSH=~/.oh-my-bash
+export OSH=/usr/share/oh-my-bash
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-bash is loaded.
@@ -19,7 +19,7 @@ OSH_THEME="font"
# OMB_HYPHEN_SENSITIVE="false"
# Uncomment the following line to disable bi-weekly auto-update checks.
-# DISABLE_AUTO_UPDATE="true"
+DISABLE_AUTO_UPDATE="true"
# Uncomment the following line to change how often to auto-update (in days).
# export UPDATE_OSH_DAYS=13
@@ -72,11 +72,11 @@ OMB_USE_SUDO=true
# Custom completions may be added to ~/.oh-my-bash/custom/completions/
# Example format: completions=(ssh git bundler gem pip pip3)
# Add wisely, as too many completions slow down shell startup.
-completions=(
- git
- composer
- ssh
-)
+# completions=(
+# git
+# composer
+# ssh
+# )
# Which aliases would you like to load? (aliases can be found in ~/.oh-my-bash/aliases/*)
# Custom aliases may be added to ~/.oh-my-bash/custom/aliases/
@@ -90,10 +90,10 @@ aliases=(
# Custom plugins may be added to ~/.oh-my-bash/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
-plugins=(
- git
- bashmarks
-)
+# plugins=(
+# git
+# bashmarks
+# )
# Which plugins would you like to conditionally load? (plugins can be found in ~/.oh-my-bash/plugins/*)
# Custom plugins may be added to ~/.oh-my-bash/custom/plugins/
@@ -102,8 +102,6 @@ plugins=(
# plugins+=(tmux-autoattach)
# fi
-source "$OSH"/oh-my-bash.sh
-
# User configuration
# export MANPATH="/usr/local/man:$MANPATH"
@@ -131,3 +129,11 @@ source "$OSH"/oh-my-bash.sh
# Example aliases
# alias bashconfig="mate ~/.bashrc"
# alias ohmybash="mate ~/.oh-my-bash"
+
+BASH_CACHE_DIR=$HOME/.cache/oh-my-bash
+if [[ ! -d $BASH_CACHE_DIR ]]; then
+ mkdir $BASH_CACHE_DIR
+fi
+
+source "$OSH"/oh-my-bash.sh
+
|