blob: 202c112f2a4691dd592f961b377085f3eb25ff21 (
plain)
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
|
#!/bin/zsh
# Portable Panacea
# panacea.local
#
# This is a MacBook Pro 14,10 (M2 Pro, 2023).
# Acquired in 2023.
#
# This is our primary portable development device. It's used
# for a large portion of our overall programming, even at home.
# These settings are common across accounts on this device.
export DEVICE_HAS_GPG
export DEVICE_HAS_HOMEBREW
export DEVICE_HOMEBREW_INSTALLATION="/opt/homebrew"
export DEVICE_HAS_NVM
export DEVICE_NVM_INSTALLATION="$HOME/.nvm"
export DEVICE_HAS_PYTHON_3
export DEVICE_PYTHON_3_INSTALLATION="$HOME/Library/Python/3.9"
export DEVICE_HAS_SUBLIME_TEXT
export DEVICE_SUBLIME_TEXT_INSTALLATION="/Applications/Sublime Text.app"
export DEVICE_HAS_VIM
|