-
Notifications
You must be signed in to change notification settings - Fork 2
/
install.conf.yaml
95 lines (75 loc) · 2.04 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
- clean: ['~']
- shell:
- [sh macos, Setting up osx]
- [git submodule update --init --recursive, Installing submodules]
-
command: echo Running pre installation script && sh pre-install.sh
stdout: true
- link:
# Terminal:
~/.shell:
path: shell
create: true
~/.shell_env: config/shell_env
~/.profile: config/profile
~/.bash_profile: config/bash_profile
~/.bashrc: config/bashrc
~/.zshrc: config/zshrc
~/.agignore: config/agignore
~/.stCommitMsg: config/.stCommitMsg
# Git:
~/.gitconfig: config/gitconfig
~/.gitignore: config/gitignore
~/.gitignore_global: config/gitignore_global
# Editors:
~/.editorconfig: config/editorconfig
# Neovim
~/.config/nvim: config/nvim-native-lsp
#Ctags
~/.ctags: config/ctags
# VS Code
~/.vscode: config/vscode
# Ideavim
~/.ideavimrc: config/ideavim/.ideavimrc
- shell:
-
command: echo Installing Homebrew formulas from Brewfile && brew bundle
stdout: true
- shell:
-
command: echo Installing FZF keybindings && $(brew --prefix)/opt/fzf/install
stdout: true
- pip:
file: python/requirements.txt
binary: /usr/local/opt/python/libexec/bin/pip
- pip:
file: python/requirements3.txt
binary: /usr/local/bin/pip3
- pipsi:
file: python/requirements-pipsi.txt
- shell:
- [if ! hash bundle 2>/dev/null; then gem install bundler; fi, Installing Bundler]
- [bundle install, Installing system gems from Gemfile]
- shell:
-
command: curl -s "https://get.sdkman.io" | bash
stdout: true
- shell:
-
command: source "$HOME/.sdkman/bin/sdkman-init.sh"
stdout: false
- shell:
-
command: echo Installing vim plugins && nvim +'PlugInstall --sync' +qa
stdout: true
- shell:
-
command: echo zsh theme && npm install --global pure-prompt
stdout: true
- shell:
-
command: luarocks install --server=https://luarocks.org/dev luaformatter
stdout: true
# These links should be created after everything is installed:
- shell:
- [brew cleanup, Cleaning up]