-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.conf.yaml
57 lines (57 loc) · 1.23 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
---
- clean: ['~']
- link:
~/bin:
force: true
path: bin/
~/.dotfiles: ''
~/.tmux.conf:
force: true
path: .tmux.conf
~/.vim:
force: true
path: .vim/
~/.vimrc:
force: true
path: .vimrc
~/.bashrc:
force: true
path: .bashrc
~/.bash_aliases:
force: true
path: .bash_aliases
~/.profile:
force: true
path: .profile
~/.inputrc:
force: true
path: .inputrc
~/.byobu:
force: true
path: .byobu/
~/.fonts:
force: true
path: .fonts/
~/.gitconfig:
force: true
path: .gitconfig
~/.local/share/bash-completion/completions:
create: true
force: true
path: bash-completions
- shell:
- rm -rf ~/.vim/bundle/
- touch ~/.bash_history
- touch ~/.lesshst
- [git submodule -q update --init --recursive, Installing submodules]
- mkdir -p ~/.config
- description: Installing or updating Vim plugins
command: vim +PlugUpdate +qall &>/dev/null
stdin: true
stderr: true
stdout: true
- description: Cleaning up removed Vim plugins
command: vim +'PlugClean!' +qall &>/dev/null
stdin: true
stderr: true
stdout: true