You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
alias reload="exec zsh"
alias config="vim ~/.zshrc"
alias plugins="vim ~/.zsh_plugins.txt"
# Kill Process by
#
# port - All processes with port will be killed
# name - All processes given a name will be killed
function kill-process-by()
{
case $1 in
port )
kill -9 $(lsof -ti tcp:$2)
;;
name )
kill -9 $(lsof -t -c $2)
;;
esac
}
Fixes
# Fix Mac thread fork issue with Ruby
export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES
# Fix ruby-pg seg faults
# https://github.com/ged/ruby-pg/issues/538
export PGGSSENCMODE="disable"
# Fix GPG signed commits
export GPG_TTY=$(tty)
Tabby
Appearance
Color Scheme
Hotkeys
Dock
The text was updated successfully, but these errors were encountered:
joshmfrankel
changed the title
Perfect development environment
Setting up ZSH, tabby, antidote, oh-my-zsh, asdf 0.16, and powerline 10k for a sublime terminal experience
Feb 26, 2025
Asdf
~/.asdf
export PATH="$HOME/.asdf:$PATH"
.tool-versions
Antidote - ZSH plugin manager
git clone --depth=1 https://github.com/mattmc3/antidote.git ${ZDOTDIR:-~}/.antidote
touch ~/.zsh_plugins.txt
source ~/.zshrc
.zsh_plugins.txt
p10k configure
Enable basic ZSH autocd
Aliases and Functions
Fixes
Tabby
Appearance
Color Scheme

Hotkeys
Dock
The text was updated successfully, but these errors were encountered: