File tree 6 files changed +26
-6
lines changed
6 files changed +26
-6
lines changed Original file line number Diff line number Diff line change 28
28
[submodule ".dotbot-plugins/sudo "]
29
29
path = .dotbot-plugins/sudo
30
30
url = https://github.com/johnlettman/dotbot-sudo.git
31
- [submodule "nvm "]
32
- path = nvm
33
- url = https://github.com/nvm-sh/nvm .git
31
+ [submodule ".dotbot-plugins/git "]
32
+ path = .dotbot-plugins/git
33
+ url = https://github.com/DrDynamic/dotbot-git .git
Original file line number Diff line number Diff line change 16
16
~/.config/htop :
17
17
~/.config/less :
18
18
19
- ~/.nvm :
20
19
~/.profile : shell/profile
21
20
~/.profile.d : shell/profile.d
22
21
~/.functions.d : shell/functions.d
23
22
23
+ - git :
24
+ ~/.nvm :
25
+ description : Node Version Manager
26
+ url : https://github.com/nvm-sh/nvm.git
27
+ branch : v0.39.4
28
+ method : clone-or-pull
24
29
25
30
26
31
- sudo :
Original file line number Diff line number Diff line change @@ -8,9 +8,10 @@ dotbot_plugins_dir="${repo_dir}/.dotbot-plugins";
8
8
dotbot_bin=" ${dotbot_dir} /bin/dotbot" ;
9
9
10
10
dotbot_plugins=(
11
- " sudo/sudo.py"
12
11
" aptget/aptget.py"
12
+ " git/git.py"
13
13
" snap/snap.py"
14
+ " sudo/sudo.py"
14
15
);
15
16
16
17
git -C " ${dotbot_dir} " submodule sync --quiet --recursive;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
+ # shellcheck disable=SC1091
2
3
export NPM_PACKAGES=" ${HOME} /.npm-packages" ;
3
4
4
5
append_path " ${NPM_PACKAGES} /bin" ;
5
6
append_manpath " ${NPM_PACKAGES} /share/man" ;
7
+
8
+ #
9
+ # Node Version Manager
10
+ #
11
+ export NVM_DIR=" ${HOME} /.nvm" ;
12
+
13
+ if [ -s " ${NVM_DIR} /nvm.sh" ]; then
14
+ . " ${NVM_DIR} /nvm.sh" ;
15
+ fi ;
16
+
17
+ if [ -n " ${BASH} " ] && [ -s " ${NVM_DIR} /bash_completion" ]; then
18
+ . " ${NVM_DIR} /bash_completion" ;
19
+ fi ;
You can’t perform that action at this time.
0 commit comments