├── Brewfile ├── Brewfile.lock.json ├── Caddyfile ├── README.md ├── bin ├── artisan ├── brewdump ├── checkout ├── edit ├── git-abort ├── git-amend ├── git-conflicts ├── git-contributors ├── git-delete ├── git-empty ├── git-feature ├── git-grep ├── git-history ├── git-ignore ├── git-io ├── git-issue ├── git-obliterate ├── git-publish ├── git-redate ├── git-refactor ├── git-rekt ├── git-repl ├── git-restore ├── git-save ├── git-shortcut ├── git-squash ├── git-sus ├── git-sync ├── git-tail ├── git-tidy ├── git-tree ├── git-undo ├── git-unstash ├── git-yolo ├── hiroshima ├── killport └── npm ├── config.fish ├── dnsmasq.conf ├── fishfile ├── git └── hooks │ └── post-merge ├── gitconfig ├── github.unite.user-style.css ├── gitignore ├── gpg-agent.conf ├── ssh └── config ├── twitter.unite.user-style.css └── zshrc /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/Brewfile -------------------------------------------------------------------------------- /Brewfile.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/Brewfile.lock.json -------------------------------------------------------------------------------- /Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/Caddyfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bin/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/artisan -------------------------------------------------------------------------------- /bin/brewdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/brewdump -------------------------------------------------------------------------------- /bin/checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/checkout -------------------------------------------------------------------------------- /bin/edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/edit -------------------------------------------------------------------------------- /bin/git-abort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-abort -------------------------------------------------------------------------------- /bin/git-amend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-amend -------------------------------------------------------------------------------- /bin/git-conflicts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-conflicts -------------------------------------------------------------------------------- /bin/git-contributors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-contributors -------------------------------------------------------------------------------- /bin/git-delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-delete -------------------------------------------------------------------------------- /bin/git-empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-empty -------------------------------------------------------------------------------- /bin/git-feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-feature -------------------------------------------------------------------------------- /bin/git-grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-grep -------------------------------------------------------------------------------- /bin/git-history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-history -------------------------------------------------------------------------------- /bin/git-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-ignore -------------------------------------------------------------------------------- /bin/git-io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-io -------------------------------------------------------------------------------- /bin/git-issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-issue -------------------------------------------------------------------------------- /bin/git-obliterate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-obliterate -------------------------------------------------------------------------------- /bin/git-publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-publish -------------------------------------------------------------------------------- /bin/git-redate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-redate -------------------------------------------------------------------------------- /bin/git-refactor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-refactor -------------------------------------------------------------------------------- /bin/git-rekt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-rekt -------------------------------------------------------------------------------- /bin/git-repl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-repl -------------------------------------------------------------------------------- /bin/git-restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-restore -------------------------------------------------------------------------------- /bin/git-save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-save -------------------------------------------------------------------------------- /bin/git-shortcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-shortcut -------------------------------------------------------------------------------- /bin/git-squash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-squash -------------------------------------------------------------------------------- /bin/git-sus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-sus -------------------------------------------------------------------------------- /bin/git-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-sync -------------------------------------------------------------------------------- /bin/git-tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-tail -------------------------------------------------------------------------------- /bin/git-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-tidy -------------------------------------------------------------------------------- /bin/git-tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-tree -------------------------------------------------------------------------------- /bin/git-undo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-undo -------------------------------------------------------------------------------- /bin/git-unstash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-unstash -------------------------------------------------------------------------------- /bin/git-yolo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/git-yolo -------------------------------------------------------------------------------- /bin/hiroshima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/hiroshima -------------------------------------------------------------------------------- /bin/killport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/killport -------------------------------------------------------------------------------- /bin/npm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/bin/npm -------------------------------------------------------------------------------- /config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/config.fish -------------------------------------------------------------------------------- /dnsmasq.conf: -------------------------------------------------------------------------------- 1 | address=/.local/127.0.0.1 2 | port=53 3 | -------------------------------------------------------------------------------- /fishfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/fishfile -------------------------------------------------------------------------------- /git/hooks/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/git/hooks/post-merge -------------------------------------------------------------------------------- /gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/gitconfig -------------------------------------------------------------------------------- /github.unite.user-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/github.unite.user-style.css -------------------------------------------------------------------------------- /gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/gitignore -------------------------------------------------------------------------------- /gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/gpg-agent.conf -------------------------------------------------------------------------------- /ssh/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/ssh/config -------------------------------------------------------------------------------- /twitter.unite.user-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/twitter.unite.user-style.css -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmanders/dotfiles/HEAD/zshrc --------------------------------------------------------------------------------