-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.conf.yaml
74 lines (71 loc) · 2.45 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Clear old symlinks in the home and bin directories
- clean: [ '~', '~/bin' ]
# Always create directories
- defaults:
link:
create: true
relink: true
shell:
stdin: true
stdout: true
stderr: true
- link:
# Create a symlink to this folder
~/.dotfiles: ''
~/.env: shell/env
~/.env.local: local/env.local
~/.vim: vim
~/.vimrc: vimrc
~/.config/nvim/init.vim: nvim
~/.config/nvim/coc-settings.json: coc-settings.json
~/.vim/spell/local.utf-8.add: local/local.utf-8.add
~/.bashrc: bashrc
~/.profile: profile
~/.Xresources: Xresources
~/.Xresources.local: local/Xresources.local
~/.dircolors: dircolors
~/.gitconfig: gitconfig
~/.gitconfig.local: local/gitconfig.local
~/.inputrc: inputrc
~/.pryrc: pryrc
~/.tmux: tmux
~/.tmux.conf: tmux/tmux.conf
~/.config/karabiner: karabiner
~/.config/rofi/config: rofi
~/.config/termite/config: termite
~/.config/yamllint/config: yamllint
# Add scripts to the ~/bin/ directory
~/bin/battery-info: bin/battery-info.sh
~/bin/detect_utf: bin/detect-utf.sh
~/bin/outside-ip: bin/outside-ip.sh
~/bin/internet-info: bin/internet-info.sh
~/bin/git-clean-merged: bin/git-clean-merged.sh
~/bin/git-default-branch: bin/git-default-branch.sh
~/bin/nvman: bin/nvman
~/bin/keycode-debug: bin/keycode-debug.sh
~/bin/rspec-branch: bin/rspec-branch
~/bin/rubocop-branch: bin/rubocop-branch
~/bin/run-on-branch: bin/run-on-branch.sh
~/bin/specimen.sh: bin/specimen.sh
~/bin/tmux_is_at_least: bin/tmux_is_at_least.sh
# Zsh files
~/.zshenv: zsh/zshenv
~/.zprofile: zsh/zprofile
~/.zshrc: zsh/zshrc
- shell:
- [git submodule update --init --recursive, Installing submodules]
- [git update-index --skip-worktree local/*, Untracking local files in Git]
- description: Installing zsh plugins via zplug
command: ./setup/zsh-setup
- description: Installing vim plugins via vim-plug
command: nvim +PlugInstall +qall
- description: Installing Node packages via npm
command: ./setup/npm-install
- description: Installing Python packages via Pip
command: ./setup/pip-install
- description: Installing Ruby gems via RubyGems
command: gem install --file ./Gemfile
- description: Installing packages via Homebrew
command: ./setup/homebrew-setup
- description: Linking diff-highlight script
command: ./setup/diff-highlight-link