├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── android └── path.zsh ├── bin ├── atom-package-install ├── battery-status ├── cloudapp ├── dns-flush ├── dotfiles ├── e ├── enhance ├── fake-webcam ├── ffcompress ├── ffstabilize ├── files ├── git-all ├── git-amend ├── git-copy-branch-name ├── git-credit ├── git-delete-local-merged ├── git-delete-remote-merged ├── git-delete-squashed ├── git-edit-new ├── git-is-commit-on-branch ├── git-nuke ├── git-promote ├── git-rank-contributors ├── git-track ├── git-undo ├── git-unpushed ├── git-unpushed-stat ├── git-up ├── git-wtf ├── github-branch-open ├── github-branch-open-pr ├── github-open ├── gitio ├── has-apt ├── headers ├── logcat-byapp ├── movieme ├── mustacheme ├── res ├── search ├── set-defaults ├── shrink-images ├── subl ├── todo ├── youtube-dl-mp3 └── yt ├── docker └── aliases.zsh ├── functions ├── _boom ├── _brew ├── _c ├── _git-rm ├── bsync ├── c ├── dos2unixd ├── extract ├── gclonecd ├── gf ├── git-log-branch ├── git-pull-origin ├── history-grep ├── killport ├── linecount ├── mvp ├── notify-os ├── retry ├── retry_backoff ├── retry_untilfail └── unzipd ├── git ├── aliases.zsh ├── completion.zsh ├── gitconfig.local.symlink.example ├── gitconfig.projects ├── gitconfig.symlink └── gitignore.symlink ├── go └── path.zsh ├── nix └── path.zsh ├── nvm └── path.zsh ├── script ├── bootstrap ├── check-zsh └── install ├── system ├── _path.zsh ├── aliases.zsh ├── env.zsh ├── grc.zsh └── keys.zsh.EXAMPLE ├── vim └── vimrc.symlink ├── yarn └── path.zsh └── zsh ├── aliases.zsh ├── completion.zsh ├── config.zsh ├── fpath.zsh ├── prompt.zsh ├── up-history.zsh ├── window.zsh └── zshrc.symlink /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | git/gitconfig.local.symlink 2 | system/keys.zsh 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /android/path.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/android/path.zsh -------------------------------------------------------------------------------- /bin/atom-package-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/atom-package-install -------------------------------------------------------------------------------- /bin/battery-status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/battery-status -------------------------------------------------------------------------------- /bin/cloudapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/cloudapp -------------------------------------------------------------------------------- /bin/dns-flush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/dns-flush -------------------------------------------------------------------------------- /bin/dotfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/dotfiles -------------------------------------------------------------------------------- /bin/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/e -------------------------------------------------------------------------------- /bin/enhance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/enhance -------------------------------------------------------------------------------- /bin/fake-webcam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/fake-webcam -------------------------------------------------------------------------------- /bin/ffcompress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/ffcompress -------------------------------------------------------------------------------- /bin/ffstabilize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/ffstabilize -------------------------------------------------------------------------------- /bin/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/files -------------------------------------------------------------------------------- /bin/git-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-all -------------------------------------------------------------------------------- /bin/git-amend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-amend -------------------------------------------------------------------------------- /bin/git-copy-branch-name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-copy-branch-name -------------------------------------------------------------------------------- /bin/git-credit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-credit -------------------------------------------------------------------------------- /bin/git-delete-local-merged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-delete-local-merged -------------------------------------------------------------------------------- /bin/git-delete-remote-merged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-delete-remote-merged -------------------------------------------------------------------------------- /bin/git-delete-squashed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-delete-squashed -------------------------------------------------------------------------------- /bin/git-edit-new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-edit-new -------------------------------------------------------------------------------- /bin/git-is-commit-on-branch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-is-commit-on-branch -------------------------------------------------------------------------------- /bin/git-nuke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-nuke -------------------------------------------------------------------------------- /bin/git-promote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-promote -------------------------------------------------------------------------------- /bin/git-rank-contributors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-rank-contributors -------------------------------------------------------------------------------- /bin/git-track: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-track -------------------------------------------------------------------------------- /bin/git-undo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-undo -------------------------------------------------------------------------------- /bin/git-unpushed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-unpushed -------------------------------------------------------------------------------- /bin/git-unpushed-stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-unpushed-stat -------------------------------------------------------------------------------- /bin/git-up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-up -------------------------------------------------------------------------------- /bin/git-wtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/git-wtf -------------------------------------------------------------------------------- /bin/github-branch-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/github-branch-open -------------------------------------------------------------------------------- /bin/github-branch-open-pr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/github-branch-open-pr -------------------------------------------------------------------------------- /bin/github-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/github-open -------------------------------------------------------------------------------- /bin/gitio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/gitio -------------------------------------------------------------------------------- /bin/has-apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/has-apt -------------------------------------------------------------------------------- /bin/headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/headers -------------------------------------------------------------------------------- /bin/logcat-byapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/logcat-byapp -------------------------------------------------------------------------------- /bin/movieme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/movieme -------------------------------------------------------------------------------- /bin/mustacheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/mustacheme -------------------------------------------------------------------------------- /bin/res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/res -------------------------------------------------------------------------------- /bin/search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/search -------------------------------------------------------------------------------- /bin/set-defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/set-defaults -------------------------------------------------------------------------------- /bin/shrink-images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/shrink-images -------------------------------------------------------------------------------- /bin/subl: -------------------------------------------------------------------------------- 1 | /Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl -------------------------------------------------------------------------------- /bin/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/todo -------------------------------------------------------------------------------- /bin/youtube-dl-mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/youtube-dl-mp3 -------------------------------------------------------------------------------- /bin/yt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/bin/yt -------------------------------------------------------------------------------- /docker/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/docker/aliases.zsh -------------------------------------------------------------------------------- /functions/_boom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/_boom -------------------------------------------------------------------------------- /functions/_brew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/_brew -------------------------------------------------------------------------------- /functions/_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/_c -------------------------------------------------------------------------------- /functions/_git-rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/_git-rm -------------------------------------------------------------------------------- /functions/bsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/bsync -------------------------------------------------------------------------------- /functions/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/c -------------------------------------------------------------------------------- /functions/dos2unixd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/dos2unixd -------------------------------------------------------------------------------- /functions/extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/extract -------------------------------------------------------------------------------- /functions/gclonecd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/gclonecd -------------------------------------------------------------------------------- /functions/gf: -------------------------------------------------------------------------------- 1 | gf() { 2 | git fetch --all --prune 3 | } -------------------------------------------------------------------------------- /functions/git-log-branch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/git-log-branch -------------------------------------------------------------------------------- /functions/git-pull-origin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/git-pull-origin -------------------------------------------------------------------------------- /functions/history-grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/history-grep -------------------------------------------------------------------------------- /functions/killport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/killport -------------------------------------------------------------------------------- /functions/linecount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/linecount -------------------------------------------------------------------------------- /functions/mvp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/mvp -------------------------------------------------------------------------------- /functions/notify-os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/notify-os -------------------------------------------------------------------------------- /functions/retry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/retry -------------------------------------------------------------------------------- /functions/retry_backoff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/retry_backoff -------------------------------------------------------------------------------- /functions/retry_untilfail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/retry_untilfail -------------------------------------------------------------------------------- /functions/unzipd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/functions/unzipd -------------------------------------------------------------------------------- /git/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/git/aliases.zsh -------------------------------------------------------------------------------- /git/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/git/completion.zsh -------------------------------------------------------------------------------- /git/gitconfig.local.symlink.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/git/gitconfig.local.symlink.example -------------------------------------------------------------------------------- /git/gitconfig.projects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/git/gitconfig.projects -------------------------------------------------------------------------------- /git/gitconfig.symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/git/gitconfig.symlink -------------------------------------------------------------------------------- /git/gitignore.symlink: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *~ 3 | *.swp 4 | -------------------------------------------------------------------------------- /go/path.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/go/path.zsh -------------------------------------------------------------------------------- /nix/path.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/nix/path.zsh -------------------------------------------------------------------------------- /nvm/path.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/nvm/path.zsh -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/check-zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/script/check-zsh -------------------------------------------------------------------------------- /script/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/script/install -------------------------------------------------------------------------------- /system/_path.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/system/_path.zsh -------------------------------------------------------------------------------- /system/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/system/aliases.zsh -------------------------------------------------------------------------------- /system/env.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/system/env.zsh -------------------------------------------------------------------------------- /system/grc.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/system/grc.zsh -------------------------------------------------------------------------------- /system/keys.zsh.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/system/keys.zsh.EXAMPLE -------------------------------------------------------------------------------- /vim/vimrc.symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/vim/vimrc.symlink -------------------------------------------------------------------------------- /yarn/path.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/yarn/path.zsh -------------------------------------------------------------------------------- /zsh/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/zsh/aliases.zsh -------------------------------------------------------------------------------- /zsh/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/zsh/completion.zsh -------------------------------------------------------------------------------- /zsh/config.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/zsh/config.zsh -------------------------------------------------------------------------------- /zsh/fpath.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/zsh/fpath.zsh -------------------------------------------------------------------------------- /zsh/prompt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/zsh/prompt.zsh -------------------------------------------------------------------------------- /zsh/up-history.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/zsh/up-history.zsh -------------------------------------------------------------------------------- /zsh/window.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/zsh/window.zsh -------------------------------------------------------------------------------- /zsh/zshrc.symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/dotfiles/HEAD/zsh/zshrc.symlink --------------------------------------------------------------------------------