Skip to content

Commit fbfc8ce

Browse files
committed
🦄 Commit changes before upgrade to Monterey
1 parent fad88a4 commit fbfc8ce

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Brewfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ brew 'zsh'
1717
# Development
1818
brew 'awscli'
1919
brew 'composer'
20+
brew 'docker'
2021
brew 'fnm'
2122
brew 'git'
2223
brew 'go'
@@ -72,6 +73,7 @@ cask 'sequel-pro'
7273
cask 'sketch'
7374
cask 'spotify'
7475
cask 'steam'
76+
cask 'syncthing'
7577
cask 'transmit'
7678
cask 'vagrant'
7779
cask 'vlc'

zsh/aliases.zsh

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
alias reload="~/.zshrc"
2-
31
# FILE MANAGEMENT & NAVIGATION
42

53
function cdl { cd "$1" && ls -aG; }
@@ -18,7 +16,7 @@ alias dump="composer dumpautoload --optimize"
1816
alias project="composer create-project"
1917
alias require="composer require"
2018

21-
alias art="artisan"
19+
alias art="php artisan"
2220
alias please="php please"
2321
alias sail="bash vendor/bin/sail"
2422

@@ -31,3 +29,4 @@ alias tower="gittower"
3129
alias editcrontab="export VISUAL=nano; crontab -e"
3230
alias record="asciinema rec"
3331

32+
alias toolbox="~/toolbox/toolbox"

zsh/path.zsh

+3
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ export PATH="$HOME/.config/yarn/global/node_modules/.bin:$PATH"
1212

1313
# .dotfiles scripts
1414
export PATH="$HOME/.dotfiles/bin:$PATH"
15+
16+
export PATH="/usr/local/opt/php/bin:$PATH"
17+
export PATH="/usr/local/opt/php/sbin:$PATH"

0 commit comments

Comments
 (0)