-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.conf.yaml
More file actions
68 lines (64 loc) · 2.03 KB
/
install.conf.yaml
File metadata and controls
68 lines (64 loc) · 2.03 KB
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
- defaults:
link:
relink: true
- clean: ['~', '~/.config']
- create:
- ~/.ssh/controlmasters
- ~/.bundle
- link:
~/.vimrc: vim/vimrc
~/.bash_profile: shell/bash_profile
~/.bashrc: shell/bashrc
~/.inputrc: shell/inputrc
~/.tmux.conf: tmux/tmux.conf
~/.gitconfig: git/gitconfig
~/.hgrc: hg/hgrc
~/.clang-format: cpp/clang-format
~/.myclirc: mysql/myclirc
~/.eslintrc.json: js/eslintrc.json
~/.config/flake8: py/flake8
~/.gnupg/gpg-agent.conf: gnupg/gpg-agent.conf
~/.config/beets/config.yaml: beets/config.yaml
~/.ssh/config: ssh/config
~/.tridactylrc:
if: '[[ "$OSTYPE" =~ "darwin"* ]]'
path: firefox/tridactylrc
# Must link directory for karabiner. See
# https://karabiner-elements.pqrs.org/docs/manual/misc/configuration-file-path/#about-symbolic-link
~/.config/karabiner:
if: '[[ "$OSTYPE" =~ "darwin"* ]]'
path: keyboard
create: true
~/.mpdconf:
if: '[[ "$OSTYPE" =~ "darwin"* ]]'
path: mpd/mpd.conf
~/.config/mpd/.mpd.conf:
create: true
path: mpd/mpd.conf
~/.bundle/Vundle.vim:
create: true
path: Vundle.vim
~/.config/ghostty/config:
create: true
path: term/ghostty_config
~/.config/nvim:
create: true
path: nvim
- shell:
- command: '[[ "$SHELL" =~ "bash" ]] || chsh -s $(which bash)'
description: Making bash the default shell
quiet: true
- command: bash shell/homebrew.sh
description: Installing homebrew packages
- command: '[[ "$OSTYPE" =~ "darwin"* ]] && bash tridactyl/installers/install.sh'
stdout: false
stderr: true
description: Installing tridactyl native
quiet: true
- command: timeout 20 vim --not-a-term +PluginInstall +qall
stdout: false
description: Installing vim plugins
quiet: true
- command: 'curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash'
description: Updating git completion
quiet: true