├── .gitignore ├── Gruntfile.js ├── README.md ├── bootstrap └── baseline.zsh ├── fonts ├── mac │ ├── DroidSansMono.ttf │ ├── Inconsolata.otf │ └── ZapfDingbats.ttf └── win │ ├── DROIDSAM.TTF │ ├── ErlerDingbats.ttf │ ├── INCONSOL.TTF │ ├── ZapfDingbatsITC.otf │ └── ZapfDingbatsITC.ttf ├── functions ├── framework.ronn ├── framework.zsh ├── man1 │ ├── framework.1 │ └── framework.1.html ├── plugins.zsh └── themes.zsh ├── git-hooks └── post-merge.zsh ├── init.zsh ├── package.json ├── plugins ├── alias-grep │ ├── alias-grep.plugin.zsh │ └── init.zsh ├── aliases │ ├── aliases.plugin.zsh │ └── init.zsh ├── apache2 │ ├── apache2.plugin.zsh │ └── init.zsh ├── colored-man │ ├── Makefile │ ├── colored-man.plugin.zsh │ ├── coloredman.txt │ ├── init.zsh │ └── terminfo │ │ └── 63 │ │ └── coloredman ├── cygwin-gem │ ├── cygwin-gem.plugin.zsh │ └── init.zsh ├── cygwin-kdiff3 │ ├── bin │ │ └── kdiff3 │ ├── init.zsh │ └── kdiff3.plugin.zsh ├── cygwin-ln │ ├── bin │ │ └── ln │ ├── cygwin-ln.plugin.zsh │ ├── init.zsh │ └── templates │ │ ├── ln.bat │ │ └── ln.vbs ├── git │ ├── git.plugin.zsh │ └── init.zsh ├── grunt-autocomplete │ ├── grunt-autocomplete.plugin.zsh │ └── init.zsh ├── key-bindings │ ├── init.zsh │ └── key-bindings.plugin.zsh ├── logr │ ├── Makefile │ ├── bin │ │ └── logr │ ├── init.zsh │ ├── logr.1.ronn │ └── man │ │ └── man1 │ │ ├── logr.1 │ │ └── logr.1.html ├── migrate │ ├── init.zsh │ └── migrate.plugin.zsh ├── mkcd │ ├── init.zsh │ └── mkcd.plugin.zsh ├── murder │ ├── bin │ │ └── murder │ ├── init.zsh │ └── murder.plugin.zsh ├── npp │ ├── init.zsh │ └── npp.plugin.zsh ├── osx-ksreview │ ├── bin │ │ └── git-ksreview │ ├── init.zsh │ └── ksreview.plugin.zsh ├── pretty-print │ ├── bin │ │ ├── ppblack │ │ ├── ppblue │ │ ├── ppbrown │ │ ├── ppcyan │ │ ├── ppdanger │ │ ├── ppdarkgray │ │ ├── ppemphasis │ │ ├── ppgreen │ │ ├── ppinfo │ │ ├── pplightblue │ │ ├── pplightcyan │ │ ├── pplightgray │ │ ├── pplightgreen │ │ ├── pplightpurple │ │ ├── pplightred │ │ ├── pppurple │ │ ├── ppred │ │ ├── pprint │ │ ├── ppsuccess │ │ ├── pptest │ │ ├── ppverbose │ │ ├── ppwarning │ │ ├── ppwhite │ │ └── ppyellow │ ├── init.zsh │ └── pretty-print.plugin.zsh ├── process │ ├── bin │ │ └── process │ ├── init.zsh │ └── process.plugin.zsh ├── refresh │ ├── init.zsh │ └── refresh.plugin.zsh ├── rprompt │ ├── init.zsh │ └── rprompt.plugin.zsh ├── run-once │ ├── bin │ │ └── run-once │ ├── init.zsh │ └── run-once.plugin.zsh ├── server │ ├── Makefile │ ├── bin │ │ └── server │ ├── init.zsh │ ├── man │ │ └── man1 │ │ │ ├── server.1 │ │ │ └── server.1.html │ ├── server.1.ronn │ └── server.plugin.zsh ├── sublime │ ├── init.zsh │ └── sublime.plugin.zsh ├── sugar │ ├── init.zsh │ └── sugar.plugin.zsh ├── system │ ├── init.zsh │ └── system.plugin.zsh └── utilities │ ├── init.zsh │ └── utilities.plugin.zsh ├── templates ├── config │ ├── blank │ │ ├── custom-mac.gitconfig │ │ ├── custom-win.gitconfig │ │ └── user.gitconfig │ ├── git │ │ ├── core.gitconfig │ │ ├── diff.gitconfig │ │ └── windows.gitconfig │ ├── iterm │ │ ├── com.googlecode.iterm2.plist │ │ ├── tomorrow-night-eighties-alf.itermcolors │ │ └── tomorrow-night-eighties.itermcolors │ └── win │ │ ├── AutoHotkey.ahk │ │ └── ConEmu.xml ├── home-mac │ └── .gitconfig ├── home-win │ └── .gitconfig ├── home │ ├── .gemrc │ ├── .gitignore_global │ ├── .zlogin │ ├── .zlogout │ ├── .zprofile │ ├── .zshenv │ ├── .zshrc │ └── README.md └── user │ └── .zshrcuser ├── themes └── psyrendust.zsh-theme └── tools ├── alf-fn-init.zsh ├── auto-update.zsh ├── bootstrap ├── apps │ ├── install-free.zsh │ ├── install-paid.zsh │ ├── install-required-free.zsh │ └── install-required-paid.zsh ├── cygwin.bat ├── cygwin.ps1 ├── init.cmd ├── init.zsh ├── iterm2-to-terminal.scpt ├── lib │ └── helper.zsh ├── setup.zsh └── terminal-to-iterm2.scpt ├── post-update.zsh ├── prompt-test.zsh ├── restart-cygwin.vbs └── restart-iterm.scpt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap/baseline.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/bootstrap/baseline.zsh -------------------------------------------------------------------------------- /fonts/mac/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/fonts/mac/DroidSansMono.ttf -------------------------------------------------------------------------------- /fonts/mac/Inconsolata.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/fonts/mac/Inconsolata.otf -------------------------------------------------------------------------------- /fonts/mac/ZapfDingbats.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/fonts/mac/ZapfDingbats.ttf -------------------------------------------------------------------------------- /fonts/win/DROIDSAM.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/fonts/win/DROIDSAM.TTF -------------------------------------------------------------------------------- /fonts/win/ErlerDingbats.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/fonts/win/ErlerDingbats.ttf -------------------------------------------------------------------------------- /fonts/win/INCONSOL.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/fonts/win/INCONSOL.TTF -------------------------------------------------------------------------------- /fonts/win/ZapfDingbatsITC.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/fonts/win/ZapfDingbatsITC.otf -------------------------------------------------------------------------------- /fonts/win/ZapfDingbatsITC.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/fonts/win/ZapfDingbatsITC.ttf -------------------------------------------------------------------------------- /functions/framework.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/functions/framework.ronn -------------------------------------------------------------------------------- /functions/framework.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/functions/framework.zsh -------------------------------------------------------------------------------- /functions/man1/framework.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/functions/man1/framework.1 -------------------------------------------------------------------------------- /functions/man1/framework.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/functions/man1/framework.1.html -------------------------------------------------------------------------------- /functions/plugins.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/functions/plugins.zsh -------------------------------------------------------------------------------- /functions/themes.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/functions/themes.zsh -------------------------------------------------------------------------------- /git-hooks/post-merge.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/git-hooks/post-merge.zsh -------------------------------------------------------------------------------- /init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/init.zsh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/package.json -------------------------------------------------------------------------------- /plugins/alias-grep/alias-grep.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/alias-grep/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/alias-grep/init.zsh -------------------------------------------------------------------------------- /plugins/aliases/aliases.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/aliases/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/aliases/init.zsh -------------------------------------------------------------------------------- /plugins/apache2/apache2.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/apache2/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/apache2/init.zsh -------------------------------------------------------------------------------- /plugins/colored-man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/colored-man/Makefile -------------------------------------------------------------------------------- /plugins/colored-man/colored-man.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/colored-man/coloredman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/colored-man/coloredman.txt -------------------------------------------------------------------------------- /plugins/colored-man/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/colored-man/init.zsh -------------------------------------------------------------------------------- /plugins/colored-man/terminfo/63/coloredman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/colored-man/terminfo/63/coloredman -------------------------------------------------------------------------------- /plugins/cygwin-gem/cygwin-gem.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/cygwin-gem/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/cygwin-gem/init.zsh -------------------------------------------------------------------------------- /plugins/cygwin-kdiff3/bin/kdiff3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/cygwin-kdiff3/bin/kdiff3 -------------------------------------------------------------------------------- /plugins/cygwin-kdiff3/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/cygwin-kdiff3/init.zsh -------------------------------------------------------------------------------- /plugins/cygwin-kdiff3/kdiff3.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/cygwin-ln/bin/ln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/cygwin-ln/bin/ln -------------------------------------------------------------------------------- /plugins/cygwin-ln/cygwin-ln.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/cygwin-ln/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/cygwin-ln/init.zsh -------------------------------------------------------------------------------- /plugins/cygwin-ln/templates/ln.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | -------------------------------------------------------------------------------- /plugins/cygwin-ln/templates/ln.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/cygwin-ln/templates/ln.vbs -------------------------------------------------------------------------------- /plugins/git/git.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/git/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/git/init.zsh -------------------------------------------------------------------------------- /plugins/grunt-autocomplete/grunt-autocomplete.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/grunt-autocomplete/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/grunt-autocomplete/init.zsh -------------------------------------------------------------------------------- /plugins/key-bindings/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/key-bindings/init.zsh -------------------------------------------------------------------------------- /plugins/key-bindings/key-bindings.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/logr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/logr/Makefile -------------------------------------------------------------------------------- /plugins/logr/bin/logr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/logr/bin/logr -------------------------------------------------------------------------------- /plugins/logr/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/logr/init.zsh -------------------------------------------------------------------------------- /plugins/logr/logr.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/logr/logr.1.ronn -------------------------------------------------------------------------------- /plugins/logr/man/man1/logr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/logr/man/man1/logr.1 -------------------------------------------------------------------------------- /plugins/logr/man/man1/logr.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/logr/man/man1/logr.1.html -------------------------------------------------------------------------------- /plugins/migrate/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/migrate/init.zsh -------------------------------------------------------------------------------- /plugins/migrate/migrate.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/mkcd/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/mkcd/init.zsh -------------------------------------------------------------------------------- /plugins/mkcd/mkcd.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/murder/bin/murder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/murder/bin/murder -------------------------------------------------------------------------------- /plugins/murder/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/murder/init.zsh -------------------------------------------------------------------------------- /plugins/murder/murder.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/npp/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/npp/init.zsh -------------------------------------------------------------------------------- /plugins/npp/npp.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/osx-ksreview/bin/git-ksreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/osx-ksreview/bin/git-ksreview -------------------------------------------------------------------------------- /plugins/osx-ksreview/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/osx-ksreview/init.zsh -------------------------------------------------------------------------------- /plugins/osx-ksreview/ksreview.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppblack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/ppblack -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppblue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/ppblue -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppbrown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/ppbrown -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppcyan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/ppcyan -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppdanger: -------------------------------------------------------------------------------- 1 | ppred -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppdarkgray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/ppdarkgray -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppemphasis: -------------------------------------------------------------------------------- 1 | pppurple -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppgreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/ppgreen -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppinfo: -------------------------------------------------------------------------------- 1 | ppcyan -------------------------------------------------------------------------------- /plugins/pretty-print/bin/pplightblue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/pplightblue -------------------------------------------------------------------------------- /plugins/pretty-print/bin/pplightcyan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/pplightcyan -------------------------------------------------------------------------------- /plugins/pretty-print/bin/pplightgray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/pplightgray -------------------------------------------------------------------------------- /plugins/pretty-print/bin/pplightgreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/pplightgreen -------------------------------------------------------------------------------- /plugins/pretty-print/bin/pplightpurple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/pplightpurple -------------------------------------------------------------------------------- /plugins/pretty-print/bin/pplightred: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/pplightred -------------------------------------------------------------------------------- /plugins/pretty-print/bin/pppurple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/pppurple -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppred: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/ppred -------------------------------------------------------------------------------- /plugins/pretty-print/bin/pprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/pprint -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppsuccess: -------------------------------------------------------------------------------- 1 | ppgreen -------------------------------------------------------------------------------- /plugins/pretty-print/bin/pptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/pptest -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppverbose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/ppverbose -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppwarning: -------------------------------------------------------------------------------- 1 | ppbrown -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppwhite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/ppwhite -------------------------------------------------------------------------------- /plugins/pretty-print/bin/ppyellow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/bin/ppyellow -------------------------------------------------------------------------------- /plugins/pretty-print/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/pretty-print/init.zsh -------------------------------------------------------------------------------- /plugins/pretty-print/pretty-print.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/process/bin/process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/process/bin/process -------------------------------------------------------------------------------- /plugins/process/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/process/init.zsh -------------------------------------------------------------------------------- /plugins/process/process.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/refresh/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/refresh/init.zsh -------------------------------------------------------------------------------- /plugins/refresh/refresh.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/rprompt/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/rprompt/init.zsh -------------------------------------------------------------------------------- /plugins/rprompt/rprompt.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/run-once/bin/run-once: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/run-once/bin/run-once -------------------------------------------------------------------------------- /plugins/run-once/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/run-once/init.zsh -------------------------------------------------------------------------------- /plugins/run-once/run-once.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/server/Makefile -------------------------------------------------------------------------------- /plugins/server/bin/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/server/bin/server -------------------------------------------------------------------------------- /plugins/server/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/server/init.zsh -------------------------------------------------------------------------------- /plugins/server/man/man1/server.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/server/man/man1/server.1 -------------------------------------------------------------------------------- /plugins/server/man/man1/server.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/server/man/man1/server.1.html -------------------------------------------------------------------------------- /plugins/server/server.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/server/server.1.ronn -------------------------------------------------------------------------------- /plugins/server/server.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/sublime/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/sublime/init.zsh -------------------------------------------------------------------------------- /plugins/sublime/sublime.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/sugar/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/sugar/init.zsh -------------------------------------------------------------------------------- /plugins/sugar/sugar.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/system/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/system/init.zsh -------------------------------------------------------------------------------- /plugins/system/system.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /plugins/utilities/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/plugins/utilities/init.zsh -------------------------------------------------------------------------------- /plugins/utilities/utilities.plugin.zsh: -------------------------------------------------------------------------------- 1 | init.zsh -------------------------------------------------------------------------------- /templates/config/blank/custom-mac.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/config/blank/custom-mac.gitconfig -------------------------------------------------------------------------------- /templates/config/blank/custom-win.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/config/blank/custom-win.gitconfig -------------------------------------------------------------------------------- /templates/config/blank/user.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/config/blank/user.gitconfig -------------------------------------------------------------------------------- /templates/config/git/core.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/config/git/core.gitconfig -------------------------------------------------------------------------------- /templates/config/git/diff.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/config/git/diff.gitconfig -------------------------------------------------------------------------------- /templates/config/git/windows.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/config/git/windows.gitconfig -------------------------------------------------------------------------------- /templates/config/iterm/com.googlecode.iterm2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/config/iterm/com.googlecode.iterm2.plist -------------------------------------------------------------------------------- /templates/config/iterm/tomorrow-night-eighties-alf.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/config/iterm/tomorrow-night-eighties-alf.itermcolors -------------------------------------------------------------------------------- /templates/config/iterm/tomorrow-night-eighties.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/config/iterm/tomorrow-night-eighties.itermcolors -------------------------------------------------------------------------------- /templates/config/win/AutoHotkey.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/config/win/AutoHotkey.ahk -------------------------------------------------------------------------------- /templates/config/win/ConEmu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/config/win/ConEmu.xml -------------------------------------------------------------------------------- /templates/home-mac/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/home-mac/.gitconfig -------------------------------------------------------------------------------- /templates/home-win/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/home-win/.gitconfig -------------------------------------------------------------------------------- /templates/home/.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/home/.gemrc -------------------------------------------------------------------------------- /templates/home/.gitignore_global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/home/.gitignore_global -------------------------------------------------------------------------------- /templates/home/.zlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/home/.zlogin -------------------------------------------------------------------------------- /templates/home/.zlogout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/home/.zlogout -------------------------------------------------------------------------------- /templates/home/.zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/home/.zprofile -------------------------------------------------------------------------------- /templates/home/.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/home/.zshenv -------------------------------------------------------------------------------- /templates/home/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/home/.zshrc -------------------------------------------------------------------------------- /templates/home/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/home/README.md -------------------------------------------------------------------------------- /templates/user/.zshrcuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/templates/user/.zshrcuser -------------------------------------------------------------------------------- /themes/psyrendust.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/themes/psyrendust.zsh-theme -------------------------------------------------------------------------------- /tools/alf-fn-init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/alf-fn-init.zsh -------------------------------------------------------------------------------- /tools/auto-update.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/auto-update.zsh -------------------------------------------------------------------------------- /tools/bootstrap/apps/install-free.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/bootstrap/apps/install-free.zsh -------------------------------------------------------------------------------- /tools/bootstrap/apps/install-paid.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/bootstrap/apps/install-paid.zsh -------------------------------------------------------------------------------- /tools/bootstrap/apps/install-required-free.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/bootstrap/apps/install-required-free.zsh -------------------------------------------------------------------------------- /tools/bootstrap/apps/install-required-paid.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/bootstrap/apps/install-required-paid.zsh -------------------------------------------------------------------------------- /tools/bootstrap/cygwin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/bootstrap/cygwin.bat -------------------------------------------------------------------------------- /tools/bootstrap/cygwin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/bootstrap/cygwin.ps1 -------------------------------------------------------------------------------- /tools/bootstrap/init.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/bootstrap/init.cmd -------------------------------------------------------------------------------- /tools/bootstrap/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/bootstrap/init.zsh -------------------------------------------------------------------------------- /tools/bootstrap/iterm2-to-terminal.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/bootstrap/iterm2-to-terminal.scpt -------------------------------------------------------------------------------- /tools/bootstrap/lib/helper.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/bootstrap/lib/helper.zsh -------------------------------------------------------------------------------- /tools/bootstrap/setup.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/bootstrap/setup.zsh -------------------------------------------------------------------------------- /tools/bootstrap/terminal-to-iterm2.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/bootstrap/terminal-to-iterm2.scpt -------------------------------------------------------------------------------- /tools/post-update.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/post-update.zsh -------------------------------------------------------------------------------- /tools/prompt-test.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/prompt-test.zsh -------------------------------------------------------------------------------- /tools/restart-cygwin.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/restart-cygwin.vbs -------------------------------------------------------------------------------- /tools/restart-iterm.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/alf/HEAD/tools/restart-iterm.scpt --------------------------------------------------------------------------------