-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.conf.yaml
73 lines (70 loc) · 1.69 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
- defaults:
link:
create: true
relink: true
- clean: ['~']
- link:
# bash
~/.bashrc:
force: true
path: bashrc.sh
~/.profile:
force: true
path: bash/profile.sh
~/.bash_logout:
force: true
path: bash/logout.sh
# zsh
~/.zshrc:
force: true
path: zshrc.sh
~/.zshenv:
force: true
path: zsh/env.sh
~/.zprofile:
force: true
path: zsh/profile.sh
# emacs
~/bin/mailto_emacs:
force: true
path: emacs/mailto_emacs.sh
# git
~/.gitconfig:
force: true
path: git/config
~/.gitignore_global:
force: true
path: git/gitignore_global
# gpg
~/.gnupg/gpg-agent.conf:
force: true
path: gnupg/gpg-agent.conf
# i3
~/bin/i3:
force: true
path: i3/i3.sh
~/.config/i3/i3pystatus.py:
force: true
path: i3/i3pystatus.py
~/.config/i3/config.base:
force: true
path: i3/config
# ipython
~/.ipython/profile_default/ipython_config.py:
force: true
path: ipython/ipython_config.py
~/.ipython/profile_default/ipython_kernel_config.py:
force: true
path: ipython/ipython_kernel_config.py
~/bin/ipdb:
force: true
path: ipython/scripts/ipdb.sh
# python
~/.coveragerc: python/coveragerc.conf
~/.noserc: python/noserc.conf
# tmux
~/.tmux.conf: tmux/tmux.conf
- shell:
- [git submodule update --init --recursive, Installing/updating submodules]
- [pip install --user autoenv flake8 jedi, Installing basic pip requirements]
# - [curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash, Installing pyenv]