Skip to content

Commit f4f328b

Browse files
macOS 13.0
1 parent 68c5072 commit f4f328b

File tree

6 files changed

+3
-61
lines changed

6 files changed

+3
-61
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
.DS_Store
2-
.idea

Brewfile

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,24 @@
11
tap "homebrew/cask-fonts"
22
cask "font-fira-code"
33
cask "iterm2"
4-
cask "lando"
5-
cask "local"
64
cask "maccy"
7-
cask "phpstorm"
85
cask "rectangle"
96
cask "tableplus"
107
cask "visual-studio-code"
118
brew "asdf"
129
brew "bash"
1310
brew "colordiff"
14-
brew "ffmpeg"
1511
brew "findutils"
1612
brew "git"
1713
brew "gnu-sed"
18-
brew "gnupg"
1914
brew "htop"
2015
brew "jq"
2116
brew "neovim"
2217
brew "nmap"
23-
brew "nvm"
24-
brew "p7zip"
2518
brew "reattach-to-user-namespace"
2619
brew "ripgrep"
2720
brew "rsync"
2821
brew "ssh-copy-id"
29-
brew "svn"
3022
brew "tmux"
3123
brew "vim"
3224
brew "wget"

README.md

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,7 @@ Uncheck the box that says "Italic text".
6060

6161
- [Install vim-plug](https://github.com/junegunn/vim-plug)
6262

63-
Symlink .vimrc for Neovim
64-
65-
mkdir -p ~/.config/nvim && ln -s ~/.vimrc ~/.config/nvim/init.vim
66-
67-
Run `:PlugInstall` in both Vim and Neovim to fetch and install all plugins.
63+
Run `:PlugInstall` in Vim to fetch and install the plugins.
6864

6965
### tmux
7066

@@ -78,10 +74,6 @@ Press `prefix + I` in a tmux session to fetch and install all plugins.
7874

7975
Included is [asdf-vm](https://asdf-vm.com/#/core-manage-plugins), which you can use to manage multiple runtime versions of Python, Ruby, etc.
8076

81-
### nvm
82-
83-
Included is [nvm](https://github.com/nvm-sh/nvm), which you can use to manage multiple runtime versions of Node.js.
84-
8577
### Visual Studio Code
8678

8779
Install extensions
@@ -99,25 +91,3 @@ Enable key repeat on macOS
9991
#### Keybindings
10092

10193
- [keybindings.json](https://github.com/joshcummingsdesign/mac-dev-env/tree/master/dotfiles/.vscode/keybindings.json)
102-
103-
### PHPStorm
104-
105-
- [.ideavimrc](https://github.com/joshcummingsdesign/mac-dev-env/tree/master/dotfiles/.ideavimrc)
106-
107-
Install the `phpstorm` command
108-
109-
cp scripts/phpstorm.sh /usr/local/bin/phpstorm
110-
111-
Enable key repeat on macOS
112-
113-
defaults write -g ApplePressAndHoldEnabled -bool false
114-
115-
Go to `Preferences > Editor > Font` and change `Font` to "Fira Code".
116-
117-
Check the box that says "Enable ligatures".
118-
119-
### Chrome
120-
121-
Chrome extensions
122-
123-
- Vimium

dotfiles/.tmux.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ bind-key R source-file ~/.tmux.conf \; display-message "Config reloaded..."
8787

8888

8989
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
90-
run -b '~/.tmux/plugins/tpm/tpm'
90+
run '~/.tmux/plugins/tpm/tpm'

dotfiles/.zprofile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
eval "$(/opt/homebrew/bin/brew shellenv)"

dotfiles/.zshrc

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -93,21 +93,12 @@ alias l="ls -lah"
9393
alias grep='grep --color'
9494
# Remove all .DS_Store files
9595
alias dstroy="find . -type f -name '.DS_Store' -delete"
96-
# Remove all .php_cs.cache files
97-
alias pstroy="find . -type f -name '.php_cs.cache' -delete -o -name '.php-cs-fixer.cache' -delete"
9896

9997
# tmux
10098
alias ta="tmux attach-session -t"
10199
alias tl="tmux list-sessions"
102100
alias tk="tmux kill-session -t"
103101

104-
# wp-cli
105-
alias wpmysql='echo -ne "\e[5 q" && lando wp db cli'
106-
107-
# Laravel
108-
alias sail='bash vendor/bin/sail'
109-
alias artisan='lando php artisan'
110-
111102
# Docker
112103
alias ds='docker ps'
113104

@@ -118,14 +109,3 @@ PATH="$HOMEBREW_PREFIX/opt/gnu-sed/libexec/gnubin:$PATH"
118109

119110
#findutils
120111
PATH="$HOMEBREW_PREFIX/opt/findutils/libexec/gnubin:$PATH"
121-
122-
# asdf
123-
. $HOMEBREW_PREFIX/opt/asdf/libexec/asdf.sh
124-
125-
# nvm
126-
export NVM_DIR="$HOME/.nvm"
127-
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && \. "/opt/homebrew/opt/nvm/nvm.sh" # This loads nvm
128-
[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion
129-
130-
# homebrew
131-
export PATH="/usr/local/sbin:$PATH"

0 commit comments

Comments
 (0)