├── .claude └── settings.json ├── .gitignore ├── .gitmodules ├── README.md ├── aws └── dot-aws │ ├── config │ └── credentials.gpg ├── bin ├── camera-sync ├── clear-port ├── git-cleanup ├── movieh264 ├── remove-nth-frame ├── renamepictures ├── urldecode ├── urlencode └── whats-on-port ├── brew ├── Brewfile ├── Caskfile ├── CaskfileExtended ├── CaskfileQuicklook ├── Fontfile ├── Macfile ├── README.md └── Requirefile ├── claude ├── .gitignore └── dot-claude │ ├── CLAUDE.md │ ├── RULES.md │ ├── agents │ ├── code-reviewer.md │ └── refactoring-expert.md │ ├── commands │ └── design.md │ ├── hooks │ ├── hooks.json │ ├── session-start.py │ └── session-start.ts │ ├── settings.json │ └── skills │ ├── creating-a-plan │ ├── BATCH.md │ ├── PLAN.md │ └── SKILL.md │ ├── implementing-a-plan │ └── SKILL.md │ └── oauth2-specialist │ └── skill.md ├── config ├── karabiner │ ├── assets │ │ └── complex_modifications │ │ │ ├── 1657424800.json │ │ │ └── 1679584835.json │ └── karabiner.json ├── mise │ └── config.toml └── zed │ ├── settings.json │ └── themes │ └── dracula_pro.json ├── dictionary └── LocalDictionary ├── git ├── dot-git-user.gpg ├── dot-git-user.template ├── dot-gitcommit ├── dot-gitconfig └── dot-gitignore ├── install.sh ├── iterm2 └── dot-iterm2 │ ├── imgcat │ ├── imgls │ ├── it2api │ ├── it2attention │ ├── it2check │ ├── it2copy │ ├── it2dl │ ├── it2getvar │ ├── it2git │ ├── it2setcolor │ ├── it2setkeylabel │ ├── it2ul │ └── it2universion ├── mackup └── dot-mackup.cfg ├── mcp ├── dot-mcp.json └── mcp.backup.json ├── mise ├── config.toml ├── dot-default-gems ├── dot-default-npm-packages └── dot-default-python-packages ├── obs ├── black-circle-4k.png ├── black-circle-4k.svg ├── black-circle-sd.png ├── black-circle-sd.svg ├── black-mask-circle-4k.png ├── black-mask-circle-4k.svg ├── black-mask-circle-sd.png └── black-mask-circle-sd.svg ├── ruby ├── dot-gemrc └── dot-rspec ├── setup-dock.sh ├── setup-stow.sh ├── setup-systemprefs.sh ├── setup.sh ├── ssh └── config.gpg ├── tmux └── dot-tmux.conf ├── vim ├── dot-vim │ ├── .netrwhist │ └── pack │ │ └── themes │ │ └── start │ │ └── .gitkeep └── dot-vimrc ├── zprezto ├── dot-zlogin ├── dot-zlogout ├── dot-zpreztorc ├── dot-zprofile └── dot-zshenv └── zsh ├── dot-zsh ├── 00-SECRETS.zsh.gpg ├── 01-base.zsh ├── 01-exports.zsh ├── 02-setup.zsh ├── 03-aliases-macos.zsh ├── 03-aliases-programming.zsh ├── 03-aliases.zsh ├── 03-nix-tools.zsh ├── 04-programming.zsh ├── 05-functions-base.zsh ├── 05-functions-gifs.zsh ├── 05-functions-git.zsh ├── 05-functions.zsh ├── 99-custom.zsh.gpg └── _main.zsh └── dot-zshrc /.claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/.claude/settings.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /aws/dot-aws/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/aws/dot-aws/config -------------------------------------------------------------------------------- /aws/dot-aws/credentials.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/aws/dot-aws/credentials.gpg -------------------------------------------------------------------------------- /bin/camera-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/bin/camera-sync -------------------------------------------------------------------------------- /bin/clear-port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/bin/clear-port -------------------------------------------------------------------------------- /bin/git-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/bin/git-cleanup -------------------------------------------------------------------------------- /bin/movieh264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/bin/movieh264 -------------------------------------------------------------------------------- /bin/remove-nth-frame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/bin/remove-nth-frame -------------------------------------------------------------------------------- /bin/renamepictures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/bin/renamepictures -------------------------------------------------------------------------------- /bin/urldecode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/bin/urldecode -------------------------------------------------------------------------------- /bin/urlencode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/bin/urlencode -------------------------------------------------------------------------------- /bin/whats-on-port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/bin/whats-on-port -------------------------------------------------------------------------------- /brew/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/brew/Brewfile -------------------------------------------------------------------------------- /brew/Caskfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/brew/Caskfile -------------------------------------------------------------------------------- /brew/CaskfileExtended: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/brew/CaskfileExtended -------------------------------------------------------------------------------- /brew/CaskfileQuicklook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/brew/CaskfileQuicklook -------------------------------------------------------------------------------- /brew/Fontfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/brew/Fontfile -------------------------------------------------------------------------------- /brew/Macfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/brew/Macfile -------------------------------------------------------------------------------- /brew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/brew/README.md -------------------------------------------------------------------------------- /brew/Requirefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/brew/Requirefile -------------------------------------------------------------------------------- /claude/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/.gitignore -------------------------------------------------------------------------------- /claude/dot-claude/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/CLAUDE.md -------------------------------------------------------------------------------- /claude/dot-claude/RULES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/RULES.md -------------------------------------------------------------------------------- /claude/dot-claude/agents/code-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/agents/code-reviewer.md -------------------------------------------------------------------------------- /claude/dot-claude/agents/refactoring-expert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/agents/refactoring-expert.md -------------------------------------------------------------------------------- /claude/dot-claude/commands/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/commands/design.md -------------------------------------------------------------------------------- /claude/dot-claude/hooks/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/hooks/hooks.json -------------------------------------------------------------------------------- /claude/dot-claude/hooks/session-start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/hooks/session-start.py -------------------------------------------------------------------------------- /claude/dot-claude/hooks/session-start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/hooks/session-start.ts -------------------------------------------------------------------------------- /claude/dot-claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/settings.json -------------------------------------------------------------------------------- /claude/dot-claude/skills/creating-a-plan/BATCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/skills/creating-a-plan/BATCH.md -------------------------------------------------------------------------------- /claude/dot-claude/skills/creating-a-plan/PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/skills/creating-a-plan/PLAN.md -------------------------------------------------------------------------------- /claude/dot-claude/skills/creating-a-plan/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/skills/creating-a-plan/SKILL.md -------------------------------------------------------------------------------- /claude/dot-claude/skills/implementing-a-plan/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/skills/implementing-a-plan/SKILL.md -------------------------------------------------------------------------------- /claude/dot-claude/skills/oauth2-specialist/skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/claude/dot-claude/skills/oauth2-specialist/skill.md -------------------------------------------------------------------------------- /config/karabiner/assets/complex_modifications/1657424800.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/config/karabiner/assets/complex_modifications/1657424800.json -------------------------------------------------------------------------------- /config/karabiner/assets/complex_modifications/1679584835.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/config/karabiner/assets/complex_modifications/1679584835.json -------------------------------------------------------------------------------- /config/karabiner/karabiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/config/karabiner/karabiner.json -------------------------------------------------------------------------------- /config/mise/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/config/mise/config.toml -------------------------------------------------------------------------------- /config/zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/config/zed/settings.json -------------------------------------------------------------------------------- /config/zed/themes/dracula_pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/config/zed/themes/dracula_pro.json -------------------------------------------------------------------------------- /dictionary/LocalDictionary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/dictionary/LocalDictionary -------------------------------------------------------------------------------- /git/dot-git-user.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/git/dot-git-user.gpg -------------------------------------------------------------------------------- /git/dot-git-user.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/git/dot-git-user.template -------------------------------------------------------------------------------- /git/dot-gitcommit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/git/dot-gitcommit -------------------------------------------------------------------------------- /git/dot-gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/git/dot-gitconfig -------------------------------------------------------------------------------- /git/dot-gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/git/dot-gitignore -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/install.sh -------------------------------------------------------------------------------- /iterm2/dot-iterm2/imgcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/iterm2/dot-iterm2/imgcat -------------------------------------------------------------------------------- /iterm2/dot-iterm2/imgls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/iterm2/dot-iterm2/imgls -------------------------------------------------------------------------------- /iterm2/dot-iterm2/it2api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/iterm2/dot-iterm2/it2api -------------------------------------------------------------------------------- /iterm2/dot-iterm2/it2attention: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/iterm2/dot-iterm2/it2attention -------------------------------------------------------------------------------- /iterm2/dot-iterm2/it2check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/iterm2/dot-iterm2/it2check -------------------------------------------------------------------------------- /iterm2/dot-iterm2/it2copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/iterm2/dot-iterm2/it2copy -------------------------------------------------------------------------------- /iterm2/dot-iterm2/it2dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/iterm2/dot-iterm2/it2dl -------------------------------------------------------------------------------- /iterm2/dot-iterm2/it2getvar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/iterm2/dot-iterm2/it2getvar -------------------------------------------------------------------------------- /iterm2/dot-iterm2/it2git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/iterm2/dot-iterm2/it2git -------------------------------------------------------------------------------- /iterm2/dot-iterm2/it2setcolor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/iterm2/dot-iterm2/it2setcolor -------------------------------------------------------------------------------- /iterm2/dot-iterm2/it2setkeylabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/iterm2/dot-iterm2/it2setkeylabel -------------------------------------------------------------------------------- /iterm2/dot-iterm2/it2ul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/iterm2/dot-iterm2/it2ul -------------------------------------------------------------------------------- /iterm2/dot-iterm2/it2universion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/iterm2/dot-iterm2/it2universion -------------------------------------------------------------------------------- /mackup/dot-mackup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/mackup/dot-mackup.cfg -------------------------------------------------------------------------------- /mcp/dot-mcp.json: -------------------------------------------------------------------------------- 1 | { 2 | "mcpServers": {} 3 | } 4 | -------------------------------------------------------------------------------- /mcp/mcp.backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/mcp/mcp.backup.json -------------------------------------------------------------------------------- /mise/config.toml: -------------------------------------------------------------------------------- 1 | config.toml -------------------------------------------------------------------------------- /mise/dot-default-gems: -------------------------------------------------------------------------------- 1 | bundler 2 | pry 3 | -------------------------------------------------------------------------------- /mise/dot-default-npm-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/mise/dot-default-npm-packages -------------------------------------------------------------------------------- /mise/dot-default-python-packages: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obs/black-circle-4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/obs/black-circle-4k.png -------------------------------------------------------------------------------- /obs/black-circle-4k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/obs/black-circle-4k.svg -------------------------------------------------------------------------------- /obs/black-circle-sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/obs/black-circle-sd.png -------------------------------------------------------------------------------- /obs/black-circle-sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/obs/black-circle-sd.svg -------------------------------------------------------------------------------- /obs/black-mask-circle-4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/obs/black-mask-circle-4k.png -------------------------------------------------------------------------------- /obs/black-mask-circle-4k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/obs/black-mask-circle-4k.svg -------------------------------------------------------------------------------- /obs/black-mask-circle-sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/obs/black-mask-circle-sd.png -------------------------------------------------------------------------------- /obs/black-mask-circle-sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/obs/black-mask-circle-sd.svg -------------------------------------------------------------------------------- /ruby/dot-gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/ruby/dot-gemrc -------------------------------------------------------------------------------- /ruby/dot-rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --order random 3 | -------------------------------------------------------------------------------- /setup-dock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/setup-dock.sh -------------------------------------------------------------------------------- /setup-stow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/setup-stow.sh -------------------------------------------------------------------------------- /setup-systemprefs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/setup-systemprefs.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/setup.sh -------------------------------------------------------------------------------- /ssh/config.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/ssh/config.gpg -------------------------------------------------------------------------------- /tmux/dot-tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/tmux/dot-tmux.conf -------------------------------------------------------------------------------- /vim/dot-vim/.netrwhist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/vim/dot-vim/.netrwhist -------------------------------------------------------------------------------- /vim/dot-vim/pack/themes/start/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vim/dot-vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/vim/dot-vimrc -------------------------------------------------------------------------------- /zprezto/dot-zlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zprezto/dot-zlogin -------------------------------------------------------------------------------- /zprezto/dot-zlogout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zprezto/dot-zlogout -------------------------------------------------------------------------------- /zprezto/dot-zpreztorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zprezto/dot-zpreztorc -------------------------------------------------------------------------------- /zprezto/dot-zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zprezto/dot-zprofile -------------------------------------------------------------------------------- /zprezto/dot-zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zprezto/dot-zshenv -------------------------------------------------------------------------------- /zsh/dot-zsh/00-SECRETS.zsh.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/00-SECRETS.zsh.gpg -------------------------------------------------------------------------------- /zsh/dot-zsh/01-base.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/01-base.zsh -------------------------------------------------------------------------------- /zsh/dot-zsh/01-exports.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/01-exports.zsh -------------------------------------------------------------------------------- /zsh/dot-zsh/02-setup.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/02-setup.zsh -------------------------------------------------------------------------------- /zsh/dot-zsh/03-aliases-macos.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/03-aliases-macos.zsh -------------------------------------------------------------------------------- /zsh/dot-zsh/03-aliases-programming.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/03-aliases-programming.zsh -------------------------------------------------------------------------------- /zsh/dot-zsh/03-aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/03-aliases.zsh -------------------------------------------------------------------------------- /zsh/dot-zsh/03-nix-tools.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/03-nix-tools.zsh -------------------------------------------------------------------------------- /zsh/dot-zsh/04-programming.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/04-programming.zsh -------------------------------------------------------------------------------- /zsh/dot-zsh/05-functions-base.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/05-functions-base.zsh -------------------------------------------------------------------------------- /zsh/dot-zsh/05-functions-gifs.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/05-functions-gifs.zsh -------------------------------------------------------------------------------- /zsh/dot-zsh/05-functions-git.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/05-functions-git.zsh -------------------------------------------------------------------------------- /zsh/dot-zsh/05-functions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/05-functions.zsh -------------------------------------------------------------------------------- /zsh/dot-zsh/99-custom.zsh.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/99-custom.zsh.gpg -------------------------------------------------------------------------------- /zsh/dot-zsh/_main.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zsh/_main.zsh -------------------------------------------------------------------------------- /zsh/dot-zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonraimondi/dotfiles/HEAD/zsh/dot-zshrc --------------------------------------------------------------------------------