-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdotbot.conf.yaml
More file actions
121 lines (100 loc) · 2.36 KB
/
dotbot.conf.yaml
File metadata and controls
121 lines (100 loc) · 2.36 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
- clean: ['~', '~/.config']
- shell:
- [mkdir -p ~/.config, Creating default config directory]
# - [git submodule update --init --recursive, Installing configuration submodules]
# - [git submodule foreach --recursive git checkout master, Switch configuration submodules to master branch]
- defaults:
link:
create: true
relink: true
force: true
- link:
#TOUCHPAD AND KEYBOARD
/etc/X11/xorg.conf.d/50-synaptics.conf:
path: etc/50-synaptics.conf
create: true
force: true
/etc/X11/xorg.conf.d/00-keyboard.conf:
path: etc/00-keyboard.conf
create: true
force: true
/etc/X11/xorg.conf.d/20-intel.conf:
path: etc/20-intel.conf
create: true
force: true
/etc/X11/xorg.conf.d/30-touchpad.conf:
path: etc/30-touchpad.conf
create: true
force: true
# xinitrc
~/.xinitrc:
path: xinitrc
force: true
create: true
#profile
~/.profile:
path: profile
force: true
create: true
# Xdefaults
~/.Xdefaults:
path: Xdefaults
#bashrc
~/.bashrc:
path: bashrc
force: true
create: true
#ZSH
~/.zshrc:
path: zsh/zshrc
~/.zlogin:
path: zsh/zlogin
~/.oh-my-zsh/themes/custom.zsh-theme:
path: zsh/custom.zsh-theme
#i3
~/.config/i3:
path: i3/
create: true
force: true
~/.config/i3status:
path: i3status
create: true
force: true
#conky
~/.config/conky:
path: conky/
create: true
force: true
#redshift
~/.config/redshift:
path: redshift/
create: true
force: true
#newsbeuter
~/.newsbeuter:
path: newsbeuter
create: true
force: true
#udiskie
~/.config/udiskie: udiskie/
#zathura
~/.config/zathura/zathurarc: zathura/
#ranger
~/.config/ranger/rifle.conf:
path: ranger/rifle.conf
#vim
~/.vimrc:
path: vim/vimrc
#w3m
~/.w3m:
path: w3m/
create: true
force: true
#gitconfig
~/.gitconfig:
path: gitconfig
force: true
create: true
- shell:
- ["git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim"]
- [sh -c "im +PluginInstall +qallvim" &]