forked from anishathalye/dotfiles_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.conf.yaml
45 lines (44 loc) · 1.14 KB
/
install.conf.yaml
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
- clean: ["~"]
- shell:
- [mkdir -p ~/.zsh, Creating .zsh Directory]
- [mkdir -p ~/bin, Creating bin Directory]
- [mkdir -p ~/.config/neofetch, Creating neofetch Directory]
- link:
~/.zshenv: zsh/zshenv
~/.zprofile: zsh/zprofile
~/.antigenrc: zsh/antigenrc
~/.zshrc:
force: true
path: zsh/zshrc
~/bin/:
glob: true
path: bin/*
relink: true
~/.zsh/:
glob: true
path: zsh/*
relink: true
~/.antigen:
force: true
~/.oh-my-zsh:
force: true
~/.fzf:
force: true
~/.fzf.zsh:
force: true
path: zsh/fzf.zsh
~/.config/neofetch/config.conf: config/neofetch/config.conf
~/.config/neofetch/config: config/neofetch/config.conf
- shell:
- [
"git submodule update --init --recursive",
"Installing/updating submodules",
]
- [
"git submodule foreach 'git checkout master && git pull origin master || :'",
"Updating remote tracking submodules",
]
- [
"rm -rf ~/.zsh-autosuggestions ~/.zsh-history-substring-search ~/.zsh-syntax-highlighting",
"Remove Obsolete Submodules",
]