-
Notifications
You must be signed in to change notification settings - Fork 18
/
install.conf.yaml
58 lines (45 loc) · 1.3 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
46
47
48
49
50
51
52
53
54
55
56
57
58
- defaults:
link:
relink: true
# Create directory for coding projects
- create:
- ~/Code
- ~/.config
# Install Homebrew and all packages from the `Brewfile`
- brewfile:
- Brewfile
# zsh and oh-my-zsh
- shell:
- [rm -rf ~/.oh-my-zsh, Delete existing oh-my-zsh install if present]
- [
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)",
Downloading oh-my-zsh,
]
- [rm ~/.zshrc, Delete oh-my-zsh config]
- link:
~/.zshrc: zsh/zshrc
# Configure all the things!
- link:
# NeoVim configuration files
~/.config/nvim: nvim
# tmux configuration file
~/.tmux.conf: tmux/tmux.conf
# git configuration files
~/.gitignore_global: git/gitignore_global
~/.gitconfig: git/gitconfig
# gh configuration files
~/.config/gh: gh
# thefuck configuration files
~/.config/thefuck: thefuck
# Karabiner configuration files
~/.config/karabiner: karabiner
# ranger configuration files
~/.config/ranger: ranger
# ripgrep configuration file
~/.ripgreprc: ripgreprc
# starship configuration file
~/.config/starship.toml: starship.toml
# Install terminfo configurations
- shell:
- tic -x ./terminals/xterm-256color-italic.terminfo
- tic -x ./terminals/tmux-256color.terminfo