-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.conf.yaml
42 lines (38 loc) · 1.52 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
- defaults:
link:
relink: true
- clean: ['~']
- link:
~/.tmux.conf: tmux.conf
~/.vimrc: vimrc
~/.bash_profile: bash_profile
~/.zprofile: zprofile
~/.gitattributes: git/gitattributes
~/.gitconfig: git/gitconfig
~/.gitignore: git/gitignore
~/.config/nvim:
path: nvim
create: true
~/.config/karabiner:
path: karabiner
create: true
~/.config/fish:
path: fish
create: true
~/.config/starship.toml:
path: starship.toml
create: true
- create:
- ~/bin
- ~/Downloads
- shell:
- [git pull, Pull latest dotfiles]
- [git submodule update --init --recursive, Installing submodules]
- [curl -fsSL https://starship.rs/install.sh | sh -s -- -b ~/bin -y || curl -fsSL https://starship.rs/install.sh | sh -s -- -b ~/bin --platform unknown-linux-musl -y, Installing Starship prompt]
- ["curl -L https://raw.githubusercontent.com/mirror/ncurses/$(tic -V | awk '{print $2}' | awk -F'.' '{print \"v\" $1 \".\" $2}')/misc/terminfo.src -O"]
- [tic -xe iTerm2.app terminfo.src, Installing iTerm2.app terminfo]
- [tic -xe tmux-256color terminfo.src, Installing tmux-256color terminfo]
- [tic -xe xterm-256color terminfo.src, Installing xterm-256color terminfo]
- [git clean -f -d -f, Cleanup any dangling files]
- [stat nvim/lua/config/local.lua || touch nvim/lua/config/local.lua, Creating empty local nvim config file]
- ["stat nvim/lua/plugins/local.lua || echo 'return {}' >> nvim/lua/plugins/local.lua", Creating empty local nvim plugins file]