-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.conf.yaml
45 lines (35 loc) · 973 Bytes
/
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
# Dotbot config
# https://github.com/anishathalye/dotbot
# Inspired by https://josnun.github.io/posts/managing-dotfiles-and-zsh-with-dotbot-and-antigen/
# install.conf.yaml
- defaults:
link:
relink: true
create: true
- clean: ['~']
- create:
- ~/.vim
- link:
# Shell
~/.aliases: shell/.aliases
~/.zshrc: shell/.zshrc
# Alacritty
~/.config/alacritty/alacritty.yml: alacritty/alacritty.yml
# Git
~/.gitconfig: git/.gitconfig
~/.gitignore: git/.gitignore
# Vim
~/.vimrc: vim/.vimrc
~/.config/nvim/init.vim: vim/nvim/init.vim
~/.vim/indent/html.vim: vim/indent/html.vim
- shell:
- [git submodule update --init --recursive, Installing submodules]
- [chsh -s $(which zsh), Making zsh the default shell]
- [git config --global core.excludesFile '~/.gitignore', Set global .gitignore]
- ifmacos:
- brew:
- antigen
- bat
- exa
- neovim
- python@3.10