Overview
Comment: | zshrc: Fix typo |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
82318b4ea2697e4c859d1f3adaacbc36 |
User & Date: | js 2022-11-27 23:10:24 |
Context
2022-11-29
| ||
00:26 | Update sway config check-in: 7563585cda user: js tags: trunk | |
2022-11-27
| ||
23:10 | zshrc: Fix typo check-in: 82318b4ea2 user: js tags: trunk | |
23:03 | Set MAKEFLAGS on NetBSD check-in: 25e0ed3529 user: js tags: trunk | |
Changes
Changes to zshrc.
︙ | ︙ | |||
219 220 221 222 223 224 225 | done __has_command vim && alias vi=vim __has_command gpg2 && alias gpg=gpg2 if [ "$(uname -s)" = "Darwin" ]; then export MAKEFLAGS="-j$(($(sysctl -n machdep.cpu.thread_count) * 2))" | | | 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | done __has_command vim && alias vi=vim __has_command gpg2 && alias gpg=gpg2 if [ "$(uname -s)" = "Darwin" ]; then export MAKEFLAGS="-j$(($(sysctl -n machdep.cpu.thread_count) * 2))" elif [ "$(uname -s)" = "NetBSD" ]; then export MAKEFLAGS="-j$(($(sysctl -n hw.ncpu) * 2))" elif __has_command nproc; then export MAKEFLAGS="-j$(($(nproc) * 2))" fi make() { case "$PWD" in |
︙ | ︙ |