-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.yaml
165 lines (146 loc) · 3.91 KB
/
setup.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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# Environment Groups Configuration
groups:
core:
description: Core development tools
packages:
- gcc
- git
- gh
- make
- tree
- wget
- zsh
- zsh-completions
- visual-studio-code
- github
python:
description: Python development environment
packages:
- pyenv
- poetry
- miniconda
- jupyter-notebook-ql
- sphinx-doc
java:
description: Java development environment
packages:
- java
- graphviz
ruby:
description: Ruby development environment
packages:
- rbenv
- ruby-build
node:
description: Node.js development environment
packages:
- nvm
- watchman
docker:
description: Container development environment
packages:
- docker
- docker-completion
- docker-compose
r_stats:
description: R statistical computing environment
packages:
- r
web:
description: Web development tools
packages:
- google-chrome
- responsively
- quicklook-csv
- qlmarkdown
- webpquicklook
data_science:
description: Data science and analysis tools
packages:
- db-browser-for-sqlite
- jupyter-notebook-ql
writing:
description: Documentation and writing tools
packages:
- mark-text
- notion
- obsidian
- zotero
media:
description: Media and entertainment
packages:
- iina
- spotify
system:
description: System utilities and enhancements
packages:
- glance
- google-drive
- logi-options+
- slack
- speedtest-cli
- unar
fonts:
description: Development and system fonts
packages:
- font-sf-pro
- font-sf-compact
- font-sf-mono
- font-new-york
- font-fira-code
- font-montserrat
- font-fontawesome
- font-awesome-terminal-fonts
- font-academicons
- font-devicons
- font-foundation-icons
- font-material-design-icons-webfont
- font-material-icons
- font-mynaui-icons
- font-simple-line-icons
# Shell Configuration
shell_configs:
homebrew:
- |
if [[ -x /opt/homebrew/bin/brew ]]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
elif [[ -x /usr/local/bin/brew ]]; then
eval "$(/usr/local/bin/brew shellenv)"
fi
- export HOMEBREW_PREFIX="$(brew --prefix)"
- export PATH="$HOMEBREW_PREFIX/bin:$PATH"
- export PATH="$HOMEBREW_PREFIX/opt/make/libexec/gnubin:$PATH"
python:
- export PYENV_ROOT="$HOME/.pyenv"
- export PATH="$PYENV_ROOT/bin:$PATH"
- |
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init --path)"
eval "$(pyenv init -)"
fi
ruby:
- export PATH="$HOME/.rbenv/bin:$PATH"
- |
if command -v rbenv 1>/dev/null 2>&1; then
eval "$(rbenv init - zsh)"
fi
node:
- export NVM_DIR="$HOME/.nvm"
- '[[ -s "$HOMEBREW_PREFIX/opt/nvm/nvm.sh" ]] && . "$HOMEBREW_PREFIX/opt/nvm/nvm.sh"'
paths:
- export PATH="$HOMEBREW_PREFIX/opt/sphinx-doc/bin:$PATH"
- export PATH="$HOMEBREW_PREFIX/opt/openjdk/bin:$PATH"
- export PATH="$HOMEBREW_PREFIX/opt/curl/bin:$PATH"
- export PATH="$HOMEBREW_PREFIX/opt/qt@5/bin:$PATH"
compiler_flags:
- export CPPFLAGS="-I$HOMEBREW_PREFIX/opt/openjdk/include -I$HOMEBREW_PREFIX/opt/curl/include -I$HOMEBREW_PREFIX/opt/qt@5/include"
- export LDFLAGS="-L$HOMEBREW_PREFIX/opt/curl/lib -L$HOMEBREW_PREFIX/opt/qt@5/lib"
- export PKG_CONFIG_PATH="$HOMEBREW_PREFIX/opt/curl/lib/pkgconfig:$HOMEBREW_PREFIX/opt/qt@5/lib/pkgconfig"
zsh:
- fpath+=~/.zfunc
- alias c="clear"
- |
if [[ -f "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k/powerlevel10k.zsh-theme" ]]; then
source "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k/powerlevel10k.zsh-theme"
fi
- '[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh'