File tree 6 files changed +19
-4
lines changed
6 files changed +19
-4
lines changed Original file line number Diff line number Diff line change
1
+ [[ -z $already_looped_bash_profiles ]] || return
2
+ already_looped_bash_profiles=1
3
+
1
4
source ~ /.../lib/basics
2
5
# Get ~/.../src/your-dots/.bash_profile, etc.
3
- ...quieteach ...sourceif .bash_profile
6
+ ...eachsource .bash_profile
4
7
5
8
...sourceif ~ /.bashrc
Original file line number Diff line number Diff line change 1
1
source ~ /.../lib/assert-decent-shell || return
2
+ [[ -z $already_looped_bashrcs ]] || return
3
+ already_looped_bashrcs=1
2
4
3
5
source ~ /.../lib/basics
4
6
5
7
...sourcedircontents ~ /.sh # Common with zsh
6
8
...sourcedircontents ~ /.bash
7
9
8
10
# Get ~/.../src/your-dots/.bashrc, etc.
9
- ...quieteach ...sourceif .bashrc
10
-
11
-
11
+ ...eachsource .bashrc
12
12
13
13
# XXX
14
14
# The stuff below needs to be deprecated and eventually removed. I(ngy) am
Original file line number Diff line number Diff line change
1
+ [[ -z $already_looped_zlogins ]] || return
2
+ already_looped_zlogins=1
3
+
1
4
source ~ /.../lib/tracefuncs
2
5
...filestart .zlogin
3
6
source ~ /.../lib/scripting
Original file line number Diff line number Diff line change
1
+ [[ -z $already_looped_zprofile ]] || return
2
+ already_looped_zprofile=1
3
+
1
4
source ~ /.../lib/tracefuncs
2
5
...filestart .zprofile
3
6
source ~ /.../lib/scripting
Original file line number Diff line number Diff line change
1
+ [[ -z $already_looped_zshenvs ]] || return
2
+ already_looped_zshenvs=1
3
+
1
4
source ~ /.../lib/tracefuncs
2
5
...filestart .zshenv
3
6
source ~ /.../lib/basics
Original file line number Diff line number Diff line change
1
+ [[ -z $already_looped_zshrcs ]] || return
2
+ already_looped_zshrcs=1
3
+
1
4
...filestart .zshrc
2
5
...sourcedircontents ~ /.sh # Common with bash
3
6
fpath+=(~/.zsh/func); autoload -U ~ /.zsh/func/* (:t)
You can’t perform that action at this time.
0 commit comments