├── .gitignore ├── Brewfile ├── LICENSE ├── README.md ├── bin ├── battery-status ├── cloudapp ├── dot ├── e ├── git-all ├── git-amend ├── git-copy-branch-name ├── git-credit ├── git-delete-local-merged ├── git-nuke ├── git-promote ├── git-rank-contributors ├── git-track ├── git-undo ├── git-unpushed ├── git-unpushed-stat ├── git-up ├── git-wtf ├── gitio ├── headers ├── res ├── search └── set-defaults ├── docker └── aliases.zsh ├── editorconfig └── editorconfig.symlink ├── functions ├── _boom ├── _brew ├── _c ├── _git-rm ├── c ├── count ├── extract ├── gf ├── mcd └── web ├── git ├── aliases.zsh ├── completion.zsh ├── gitconfig.local.symlink.example ├── gitconfig.symlink └── gitignore.symlink ├── homebrew └── install.sh ├── macos ├── install.sh └── set-defaults.sh ├── nvm ├── install.sh └── nvm.zsh ├── postgres └── aliases.zsh ├── ruby ├── aliases.zsh ├── completion.zsh ├── gemrc.symlink ├── irbrc.symlink └── rbenv.zsh ├── saltVerify.sh ├── script ├── addUser.sh ├── bootstrap ├── bootstrap_overwriteAll ├── install ├── old │ ├── automationAug18.sh │ ├── automationFall19.sh │ ├── automationSpring19.sh │ ├── automationWinter19.sh │ ├── cleanupHomeBrew.sh │ ├── reinstallOhMyZsh.sh │ └── updateNvmWinter19.sh └── saltAutomation.sh ├── system ├── _path.zsh ├── aliases.zsh ├── env.zsh ├── grc.zsh └── keys.zsh ├── typescript ├── vim └── vimrc.symlink ├── vscode ├── keybindings.json ├── setting.json └── setup ├── xcode └── aliases.zsh ├── yarn └── path.zsh └── zsh ├── aliases.zsh ├── completion.zsh ├── config.zsh ├── fpath.zsh ├── prompt.zsh ├── window.zsh └── zshrc.symlink /.gitignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/Brewfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bin/battery-status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/battery-status -------------------------------------------------------------------------------- /bin/cloudapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/cloudapp -------------------------------------------------------------------------------- /bin/dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/dot -------------------------------------------------------------------------------- /bin/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/e -------------------------------------------------------------------------------- /bin/git-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-all -------------------------------------------------------------------------------- /bin/git-amend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-amend -------------------------------------------------------------------------------- /bin/git-copy-branch-name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-copy-branch-name -------------------------------------------------------------------------------- /bin/git-credit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-credit -------------------------------------------------------------------------------- /bin/git-delete-local-merged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-delete-local-merged -------------------------------------------------------------------------------- /bin/git-nuke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-nuke -------------------------------------------------------------------------------- /bin/git-promote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-promote -------------------------------------------------------------------------------- /bin/git-rank-contributors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-rank-contributors -------------------------------------------------------------------------------- /bin/git-track: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-track -------------------------------------------------------------------------------- /bin/git-undo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-undo -------------------------------------------------------------------------------- /bin/git-unpushed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-unpushed -------------------------------------------------------------------------------- /bin/git-unpushed-stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-unpushed-stat -------------------------------------------------------------------------------- /bin/git-up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-up -------------------------------------------------------------------------------- /bin/git-wtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/git-wtf -------------------------------------------------------------------------------- /bin/gitio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/gitio -------------------------------------------------------------------------------- /bin/headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/headers -------------------------------------------------------------------------------- /bin/res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/res -------------------------------------------------------------------------------- /bin/search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/search -------------------------------------------------------------------------------- /bin/set-defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/bin/set-defaults -------------------------------------------------------------------------------- /docker/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/docker/aliases.zsh -------------------------------------------------------------------------------- /editorconfig/editorconfig.symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/editorconfig/editorconfig.symlink -------------------------------------------------------------------------------- /functions/_boom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/functions/_boom -------------------------------------------------------------------------------- /functions/_brew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/functions/_brew -------------------------------------------------------------------------------- /functions/_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/functions/_c -------------------------------------------------------------------------------- /functions/_git-rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/functions/_git-rm -------------------------------------------------------------------------------- /functions/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/functions/c -------------------------------------------------------------------------------- /functions/count: -------------------------------------------------------------------------------- 1 | function count() { ls -1 "${1:-.}" | wc -l; } -------------------------------------------------------------------------------- /functions/extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/functions/extract -------------------------------------------------------------------------------- /functions/gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/functions/gf -------------------------------------------------------------------------------- /functions/mcd: -------------------------------------------------------------------------------- 1 | function mcd() { mkdir $1 && cd $1; } -------------------------------------------------------------------------------- /functions/web: -------------------------------------------------------------------------------- 1 | function web() { python -m SimpleHTTPServer; } -------------------------------------------------------------------------------- /git/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/git/aliases.zsh -------------------------------------------------------------------------------- /git/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/git/completion.zsh -------------------------------------------------------------------------------- /git/gitconfig.local.symlink.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/git/gitconfig.local.symlink.example -------------------------------------------------------------------------------- /git/gitconfig.symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/git/gitconfig.symlink -------------------------------------------------------------------------------- /git/gitignore.symlink: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *~ 3 | *.swp 4 | -------------------------------------------------------------------------------- /homebrew/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/homebrew/install.sh -------------------------------------------------------------------------------- /macos/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/macos/install.sh -------------------------------------------------------------------------------- /macos/set-defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/macos/set-defaults.sh -------------------------------------------------------------------------------- /nvm/install.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nvm/nvm.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/nvm/nvm.zsh -------------------------------------------------------------------------------- /postgres/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/postgres/aliases.zsh -------------------------------------------------------------------------------- /ruby/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/ruby/aliases.zsh -------------------------------------------------------------------------------- /ruby/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/ruby/completion.zsh -------------------------------------------------------------------------------- /ruby/gemrc.symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/ruby/gemrc.symlink -------------------------------------------------------------------------------- /ruby/irbrc.symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/ruby/irbrc.symlink -------------------------------------------------------------------------------- /ruby/rbenv.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/ruby/rbenv.zsh -------------------------------------------------------------------------------- /saltVerify.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env zsh 2 | 3 | echo "No automatic verification possible - OK" 4 | exit 0 -------------------------------------------------------------------------------- /script/addUser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/script/addUser.sh -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/bootstrap_overwriteAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/script/bootstrap_overwriteAll -------------------------------------------------------------------------------- /script/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/script/install -------------------------------------------------------------------------------- /script/old/automationAug18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/script/old/automationAug18.sh -------------------------------------------------------------------------------- /script/old/automationFall19.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/script/old/automationFall19.sh -------------------------------------------------------------------------------- /script/old/automationSpring19.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/script/old/automationSpring19.sh -------------------------------------------------------------------------------- /script/old/automationWinter19.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/script/old/automationWinter19.sh -------------------------------------------------------------------------------- /script/old/cleanupHomeBrew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/script/old/cleanupHomeBrew.sh -------------------------------------------------------------------------------- /script/old/reinstallOhMyZsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/script/old/reinstallOhMyZsh.sh -------------------------------------------------------------------------------- /script/old/updateNvmWinter19.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/script/old/updateNvmWinter19.sh -------------------------------------------------------------------------------- /script/saltAutomation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/script/saltAutomation.sh -------------------------------------------------------------------------------- /system/_path.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/system/_path.zsh -------------------------------------------------------------------------------- /system/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/system/aliases.zsh -------------------------------------------------------------------------------- /system/env.zsh: -------------------------------------------------------------------------------- 1 | export EDITOR='code' 2 | -------------------------------------------------------------------------------- /system/grc.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/system/grc.zsh -------------------------------------------------------------------------------- /system/keys.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/system/keys.zsh -------------------------------------------------------------------------------- /typescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/typescript -------------------------------------------------------------------------------- /vim/vimrc.symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/vim/vimrc.symlink -------------------------------------------------------------------------------- /vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/vscode/keybindings.json -------------------------------------------------------------------------------- /vscode/setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/vscode/setting.json -------------------------------------------------------------------------------- /vscode/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/vscode/setup -------------------------------------------------------------------------------- /xcode/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/xcode/aliases.zsh -------------------------------------------------------------------------------- /yarn/path.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/yarn/path.zsh -------------------------------------------------------------------------------- /zsh/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/zsh/aliases.zsh -------------------------------------------------------------------------------- /zsh/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/zsh/completion.zsh -------------------------------------------------------------------------------- /zsh/config.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/zsh/config.zsh -------------------------------------------------------------------------------- /zsh/fpath.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/zsh/fpath.zsh -------------------------------------------------------------------------------- /zsh/prompt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/zsh/prompt.zsh -------------------------------------------------------------------------------- /zsh/window.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/zsh/window.zsh -------------------------------------------------------------------------------- /zsh/zshrc.symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedtechnology/jsfs-tool-dotfiles/HEAD/zsh/zshrc.symlink --------------------------------------------------------------------------------