-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmac_os-conf.yml
82 lines (72 loc) · 2.19 KB
/
mac_os-conf.yml
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
- defaults:
link:
relink: true
create: true
force: true
glob: true
- clean: ['~']
- link:
~/.bash_aliases: "bash/bash_aliases"
~/.bash_aliases_extension: "bash/bash_aliases_extensions/mac"
~/.bash_env_vars: "bash/bash_env_vars"
~/.bash_env_vars_extension: "bash/bash_env_vars_extensions/mac"
~/.bash_profile: "bash/bash_profile"
~/.bashrc: "bash/bashrc"
~/.bashrc_extension: "bash/bashrc_extensions/mac"
~/.bashrc_root: "bash/bashrc_root"
~/.config/nvim/: "nvim/*"
~/.elinks/elinks.conf: "elinks/elinks.conf"
~/.git-completion.bash: "git/.git-completion.bash"
~/.git-prompt.sh: "git/.git-prompt.sh"
~/.gitconfig: "git/.gitconfig"
~/.oh-my-zsh/oh-my-zsh.sh: "oh-my-zsh/oh-my-zsh.sh"
~/.oh-my-zsh/custom/: "oh-my-zsh/custom/*"
~/.ssh/config: "ssh/mac_os"
~/.tmux.conf: "tmux/.tmux.conf"
~/.tmux-osx.conf: "tmux/.tmux-osx.conf"
~/.vimrc: "vim/.vimrc"
~/.vim: "vim/.vim"
~/.zshrc: "zsh/.zshrc"
- shell:
-
description: "\nCreate vim undo file...\n "
command: touch $HOME/.vim/undo
stdin: true
stdout: true
stder: true
-
description: "\nInstall submodules...\n "
command: git submodule update --init --recursive
stdin: true
stdout: true
stder: true
-
description: "\nGet some homebrew...\n "
command: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" ; brew update
stdin: true
stdout: true
stderr: true
-
description: "\nInstall brew programs...\n "
command: brew install elinks go nvim thefuck the_silver_searcher tmux tree vim zsh
stdin: true
stdout: true
stderr: true
-
description: "\nInstall oh-my-zsh...\n "
command: sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
stdin: true
stdout: true
stderr: true
-
description: "\nConfigure some pyenv...\n "
command: pyenv install --skip-existing 3.6.1; pyenv global 3.6.1
stdin: true
stdout: true
stderr: true
-
description: "\nConfigure some golang...\n "
command: mkdir -p $GOPATH
stdin: true
stdout: true
stderr: true