-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.conf.yaml
28 lines (24 loc) · 1.19 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
- defaults:
link:
relink: true
- clean: ['~']
- create:
- ~/downloads
- ~/.config
- link:
~/.tmux.conf: tmux/tmux.conf
~/.vim: vim
~/.config/nvim: nvim
~/.zshrc: zsh/zshrc
~/custom: custom
- shell:
- [git submodule update --init --recursive, Installing submodules]
- ["[[ -d ~/.vim/bundle/Vundle.vim ]] || git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim", Install vundle]
- ['[[ -d ~/.oh-my-zsh ]] || sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --keep-zshrc', Installing oh-my-zsh]
- [./install-scripts/install-basic-utilities.sh, Installing basic utilities]
- [wget -O ~/.dircolors "https://raw.githubusercontent.com/seebi/dircolors-solarized/master/dircolors.ansi-dark"]
- [cp zsh/themes/* ~/.oh-my-zsh/themes, Installing custom oh-my-zsh themes]
- [cp -av zsh/plugins/* ~/.oh-my-zsh/plugins, Installing custom oh-my-zsh plugins]
- [mkdir -p ~/.tmux/plugins && cp -av tmux/plugins/* ~/.tmux/plugins, Installing tmux plugins]
- [./install-scripts/install-packer.sh, Installing neovim plugin manager (packer)]
- [./install-scripts/install-k8s-tools.sh, Installing k8s tools]