├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── init.zsh ├── modules ├── README.md ├── archive │ ├── README.md │ └── functions │ │ ├── _lsarchive │ │ ├── _unarchive │ │ ├── lsarchive │ │ └── unarchive ├── autoenv │ ├── README.md │ └── init.zsh ├── autosuggestions │ ├── README.md │ └── init.zsh ├── base64 │ ├── README.md │ └── init.zsh ├── bundler │ ├── README.md │ ├── _bundler │ └── init.zsh ├── command-not-found │ ├── README.md │ └── init.zsh ├── completion │ ├── README.md │ └── init.zsh ├── deer │ └── init.zsh ├── directory │ ├── README.md │ └── init.zsh ├── dnf │ ├── README.md │ └── init.zsh ├── dpkg │ ├── README.md │ ├── functions │ │ ├── deb-clone │ │ ├── deb-history │ │ └── deb-kbuild │ └── init.zsh ├── editor │ ├── README.md │ └── init.zsh ├── emacs │ ├── README.md │ └── init.zsh ├── environment │ ├── README.md │ └── init.zsh ├── fancy-ctrl-z │ ├── README.md │ └── init.zsh ├── fasd │ ├── README.md │ └── init.zsh ├── git │ ├── README.md │ ├── alias.zsh │ ├── functions │ │ ├── _git-hub-browse │ │ ├── _git-hub-shorten-url │ │ ├── _git-info │ │ ├── _git-submodule-move │ │ ├── _git-submodule-remove │ │ ├── git-branch-current │ │ ├── git-branch-list │ │ ├── git-commit-lost │ │ ├── git-dir │ │ ├── git-hub-browse │ │ ├── git-hub-shorten-url │ │ ├── git-info │ │ ├── git-root │ │ ├── git-stash-clear-interactive │ │ ├── git-stash-dropped │ │ ├── git-stash-recover │ │ ├── git-submodule-move │ │ └── git-submodule-remove │ └── init.zsh ├── gnu-utility │ ├── README.md │ └── init.zsh ├── gpg │ ├── README.md │ └── init.zsh ├── haskell │ ├── README.md │ └── init.zsh ├── helper │ ├── README.md │ ├── functions │ │ └── add-zsh-trap │ └── init.zsh ├── history-substring-search │ ├── README.md │ └── init.zsh ├── history │ ├── README.md │ └── init.zsh ├── homebrew │ ├── README.md │ └── init.zsh ├── macports │ ├── README.md │ └── init.zsh ├── mvn │ ├── README.md │ └── init.zsh ├── node │ ├── README.md │ ├── alias.zsh │ ├── functions │ │ ├── node-doc │ │ └── node-info │ └── init.zsh ├── ocaml │ ├── README.md │ └── init.zsh ├── osx │ ├── README.md │ ├── functions │ │ ├── _manb_mand_manp │ │ ├── battery-percentage │ │ ├── battery-time │ │ ├── bluetooth-keyboard-battery │ │ ├── bluetooth-mouse-battery │ │ ├── local-ip │ │ ├── mand │ │ ├── manp │ │ ├── osx-ls-download-history │ │ ├── osx-rm-dir-metadata │ │ ├── osx-rm-download-history │ │ ├── pfd │ │ ├── pfs │ │ ├── public-ip │ │ ├── ql │ │ └── tab │ └── init.zsh ├── pacman │ ├── README.md │ ├── functions │ │ ├── pacman-list-disowned │ │ └── pacman-list-explicit │ ├── init.zsh │ └── yaourt.zsh ├── perl │ ├── README.md │ ├── functions │ │ └── perl-info │ └── init.zsh ├── prompt │ ├── README.md │ ├── functions │ │ ├── async │ │ ├── prompt_agnoster_setup │ │ ├── prompt_cloud_setup │ │ ├── prompt_damoekri_setup │ │ ├── prompt_giddie_setup │ │ ├── prompt_kylewest_setup │ │ ├── prompt_minimal_setup │ │ ├── prompt_nicoulaj_setup │ │ ├── prompt_paradox_setup │ │ ├── prompt_peepcode_setup │ │ ├── prompt_powerline_setup │ │ ├── prompt_pure_setup │ │ ├── prompt_skwp_setup │ │ ├── prompt_smiley_setup │ │ ├── prompt_sorin_setup │ │ └── prompt_steeef_setup │ └── init.zsh ├── python │ ├── README.md │ ├── functions │ │ └── python-info │ └── init.zsh ├── rails │ ├── README.md │ └── init.zsh ├── rsync │ ├── README.md │ └── init.zsh ├── ruby │ ├── README.md │ ├── functions │ │ ├── ruby-app-root │ │ └── ruby-info │ └── init.zsh ├── screen │ ├── README.md │ └── init.zsh ├── spectrum │ ├── README.md │ └── init.zsh ├── ssh │ ├── README.md │ └── init.zsh ├── syntax-highlighting │ ├── README.md │ └── init.zsh ├── terminal │ ├── README.md │ └── init.zsh ├── tmux │ ├── README.md │ └── init.zsh ├── utility │ ├── README.md │ ├── functions │ │ ├── _cdls_popdls_pushdls │ │ ├── _dut │ │ ├── _mkdcd │ │ ├── _prep │ │ ├── _psub │ │ ├── diff │ │ ├── dut │ │ ├── make │ │ ├── prep │ │ ├── psub │ │ └── wdiff │ └── init.zsh ├── wakeonlan │ ├── README.md │ └── functions │ │ ├── _wake │ │ └── wake ├── yum │ ├── README.md │ └── init.zsh └── zsh-notify │ ├── README.md │ └── init.zsh └── runcoms ├── README.md ├── zlogin ├── zlogout ├── zpreztorc ├── zprofile ├── zshenv └── zshrc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/README.md -------------------------------------------------------------------------------- /init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/init.zsh -------------------------------------------------------------------------------- /modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/README.md -------------------------------------------------------------------------------- /modules/archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/archive/README.md -------------------------------------------------------------------------------- /modules/archive/functions/_lsarchive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/archive/functions/_lsarchive -------------------------------------------------------------------------------- /modules/archive/functions/_unarchive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/archive/functions/_unarchive -------------------------------------------------------------------------------- /modules/archive/functions/lsarchive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/archive/functions/lsarchive -------------------------------------------------------------------------------- /modules/archive/functions/unarchive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/archive/functions/unarchive -------------------------------------------------------------------------------- /modules/autoenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/autoenv/README.md -------------------------------------------------------------------------------- /modules/autoenv/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/autoenv/init.zsh -------------------------------------------------------------------------------- /modules/autosuggestions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/autosuggestions/README.md -------------------------------------------------------------------------------- /modules/autosuggestions/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/autosuggestions/init.zsh -------------------------------------------------------------------------------- /modules/base64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/base64/README.md -------------------------------------------------------------------------------- /modules/base64/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/base64/init.zsh -------------------------------------------------------------------------------- /modules/bundler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/bundler/README.md -------------------------------------------------------------------------------- /modules/bundler/_bundler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/bundler/_bundler -------------------------------------------------------------------------------- /modules/bundler/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/bundler/init.zsh -------------------------------------------------------------------------------- /modules/command-not-found/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/command-not-found/README.md -------------------------------------------------------------------------------- /modules/command-not-found/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/command-not-found/init.zsh -------------------------------------------------------------------------------- /modules/completion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/completion/README.md -------------------------------------------------------------------------------- /modules/completion/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/completion/init.zsh -------------------------------------------------------------------------------- /modules/deer/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/deer/init.zsh -------------------------------------------------------------------------------- /modules/directory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/directory/README.md -------------------------------------------------------------------------------- /modules/directory/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/directory/init.zsh -------------------------------------------------------------------------------- /modules/dnf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/dnf/README.md -------------------------------------------------------------------------------- /modules/dnf/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/dnf/init.zsh -------------------------------------------------------------------------------- /modules/dpkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/dpkg/README.md -------------------------------------------------------------------------------- /modules/dpkg/functions/deb-clone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/dpkg/functions/deb-clone -------------------------------------------------------------------------------- /modules/dpkg/functions/deb-history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/dpkg/functions/deb-history -------------------------------------------------------------------------------- /modules/dpkg/functions/deb-kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/dpkg/functions/deb-kbuild -------------------------------------------------------------------------------- /modules/dpkg/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/dpkg/init.zsh -------------------------------------------------------------------------------- /modules/editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/editor/README.md -------------------------------------------------------------------------------- /modules/editor/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/editor/init.zsh -------------------------------------------------------------------------------- /modules/emacs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/emacs/README.md -------------------------------------------------------------------------------- /modules/emacs/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/emacs/init.zsh -------------------------------------------------------------------------------- /modules/environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/environment/README.md -------------------------------------------------------------------------------- /modules/environment/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/environment/init.zsh -------------------------------------------------------------------------------- /modules/fancy-ctrl-z/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/fancy-ctrl-z/README.md -------------------------------------------------------------------------------- /modules/fancy-ctrl-z/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/fancy-ctrl-z/init.zsh -------------------------------------------------------------------------------- /modules/fasd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/fasd/README.md -------------------------------------------------------------------------------- /modules/fasd/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/fasd/init.zsh -------------------------------------------------------------------------------- /modules/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/README.md -------------------------------------------------------------------------------- /modules/git/alias.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/alias.zsh -------------------------------------------------------------------------------- /modules/git/functions/_git-hub-browse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/_git-hub-browse -------------------------------------------------------------------------------- /modules/git/functions/_git-hub-shorten-url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/_git-hub-shorten-url -------------------------------------------------------------------------------- /modules/git/functions/_git-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/_git-info -------------------------------------------------------------------------------- /modules/git/functions/_git-submodule-move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/_git-submodule-move -------------------------------------------------------------------------------- /modules/git/functions/_git-submodule-remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/_git-submodule-remove -------------------------------------------------------------------------------- /modules/git/functions/git-branch-current: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/git-branch-current -------------------------------------------------------------------------------- /modules/git/functions/git-branch-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/git-branch-list -------------------------------------------------------------------------------- /modules/git/functions/git-commit-lost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/git-commit-lost -------------------------------------------------------------------------------- /modules/git/functions/git-dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/git-dir -------------------------------------------------------------------------------- /modules/git/functions/git-hub-browse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/git-hub-browse -------------------------------------------------------------------------------- /modules/git/functions/git-hub-shorten-url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/git-hub-shorten-url -------------------------------------------------------------------------------- /modules/git/functions/git-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/git-info -------------------------------------------------------------------------------- /modules/git/functions/git-root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/git-root -------------------------------------------------------------------------------- /modules/git/functions/git-stash-clear-interactive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/git-stash-clear-interactive -------------------------------------------------------------------------------- /modules/git/functions/git-stash-dropped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/git-stash-dropped -------------------------------------------------------------------------------- /modules/git/functions/git-stash-recover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/git-stash-recover -------------------------------------------------------------------------------- /modules/git/functions/git-submodule-move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/git-submodule-move -------------------------------------------------------------------------------- /modules/git/functions/git-submodule-remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/functions/git-submodule-remove -------------------------------------------------------------------------------- /modules/git/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/git/init.zsh -------------------------------------------------------------------------------- /modules/gnu-utility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/gnu-utility/README.md -------------------------------------------------------------------------------- /modules/gnu-utility/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/gnu-utility/init.zsh -------------------------------------------------------------------------------- /modules/gpg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/gpg/README.md -------------------------------------------------------------------------------- /modules/gpg/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/gpg/init.zsh -------------------------------------------------------------------------------- /modules/haskell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/haskell/README.md -------------------------------------------------------------------------------- /modules/haskell/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/haskell/init.zsh -------------------------------------------------------------------------------- /modules/helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/helper/README.md -------------------------------------------------------------------------------- /modules/helper/functions/add-zsh-trap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/helper/functions/add-zsh-trap -------------------------------------------------------------------------------- /modules/helper/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/helper/init.zsh -------------------------------------------------------------------------------- /modules/history-substring-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/history-substring-search/README.md -------------------------------------------------------------------------------- /modules/history-substring-search/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/history-substring-search/init.zsh -------------------------------------------------------------------------------- /modules/history/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/history/README.md -------------------------------------------------------------------------------- /modules/history/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/history/init.zsh -------------------------------------------------------------------------------- /modules/homebrew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/homebrew/README.md -------------------------------------------------------------------------------- /modules/homebrew/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/homebrew/init.zsh -------------------------------------------------------------------------------- /modules/macports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/macports/README.md -------------------------------------------------------------------------------- /modules/macports/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/macports/init.zsh -------------------------------------------------------------------------------- /modules/mvn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/mvn/README.md -------------------------------------------------------------------------------- /modules/mvn/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/mvn/init.zsh -------------------------------------------------------------------------------- /modules/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/node/README.md -------------------------------------------------------------------------------- /modules/node/alias.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/node/alias.zsh -------------------------------------------------------------------------------- /modules/node/functions/node-doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/node/functions/node-doc -------------------------------------------------------------------------------- /modules/node/functions/node-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/node/functions/node-info -------------------------------------------------------------------------------- /modules/node/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/node/init.zsh -------------------------------------------------------------------------------- /modules/ocaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/ocaml/README.md -------------------------------------------------------------------------------- /modules/ocaml/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/ocaml/init.zsh -------------------------------------------------------------------------------- /modules/osx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/README.md -------------------------------------------------------------------------------- /modules/osx/functions/_manb_mand_manp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/_manb_mand_manp -------------------------------------------------------------------------------- /modules/osx/functions/battery-percentage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/battery-percentage -------------------------------------------------------------------------------- /modules/osx/functions/battery-time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/battery-time -------------------------------------------------------------------------------- /modules/osx/functions/bluetooth-keyboard-battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/bluetooth-keyboard-battery -------------------------------------------------------------------------------- /modules/osx/functions/bluetooth-mouse-battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/bluetooth-mouse-battery -------------------------------------------------------------------------------- /modules/osx/functions/local-ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/local-ip -------------------------------------------------------------------------------- /modules/osx/functions/mand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/mand -------------------------------------------------------------------------------- /modules/osx/functions/manp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/manp -------------------------------------------------------------------------------- /modules/osx/functions/osx-ls-download-history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/osx-ls-download-history -------------------------------------------------------------------------------- /modules/osx/functions/osx-rm-dir-metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/osx-rm-dir-metadata -------------------------------------------------------------------------------- /modules/osx/functions/osx-rm-download-history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/osx-rm-download-history -------------------------------------------------------------------------------- /modules/osx/functions/pfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/pfd -------------------------------------------------------------------------------- /modules/osx/functions/pfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/pfs -------------------------------------------------------------------------------- /modules/osx/functions/public-ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/public-ip -------------------------------------------------------------------------------- /modules/osx/functions/ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/ql -------------------------------------------------------------------------------- /modules/osx/functions/tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/functions/tab -------------------------------------------------------------------------------- /modules/osx/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/osx/init.zsh -------------------------------------------------------------------------------- /modules/pacman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/pacman/README.md -------------------------------------------------------------------------------- /modules/pacman/functions/pacman-list-disowned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/pacman/functions/pacman-list-disowned -------------------------------------------------------------------------------- /modules/pacman/functions/pacman-list-explicit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/pacman/functions/pacman-list-explicit -------------------------------------------------------------------------------- /modules/pacman/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/pacman/init.zsh -------------------------------------------------------------------------------- /modules/pacman/yaourt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/pacman/yaourt.zsh -------------------------------------------------------------------------------- /modules/perl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/perl/README.md -------------------------------------------------------------------------------- /modules/perl/functions/perl-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/perl/functions/perl-info -------------------------------------------------------------------------------- /modules/perl/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/perl/init.zsh -------------------------------------------------------------------------------- /modules/prompt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/README.md -------------------------------------------------------------------------------- /modules/prompt/functions/async: -------------------------------------------------------------------------------- 1 | ../external/pure/async.zsh -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_agnoster_setup: -------------------------------------------------------------------------------- 1 | ../external/agnoster/agnoster.zsh-theme -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_cloud_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/functions/prompt_cloud_setup -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_damoekri_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/functions/prompt_damoekri_setup -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_giddie_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/functions/prompt_giddie_setup -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_kylewest_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/functions/prompt_kylewest_setup -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_minimal_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/functions/prompt_minimal_setup -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_nicoulaj_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/functions/prompt_nicoulaj_setup -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_paradox_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/functions/prompt_paradox_setup -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_peepcode_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/functions/prompt_peepcode_setup -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_powerline_setup: -------------------------------------------------------------------------------- 1 | ../external/powerline/prompt_powerline_setup -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_pure_setup: -------------------------------------------------------------------------------- 1 | ../external/pure/pure.zsh -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_skwp_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/functions/prompt_skwp_setup -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_smiley_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/functions/prompt_smiley_setup -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_sorin_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/functions/prompt_sorin_setup -------------------------------------------------------------------------------- /modules/prompt/functions/prompt_steeef_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/functions/prompt_steeef_setup -------------------------------------------------------------------------------- /modules/prompt/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/prompt/init.zsh -------------------------------------------------------------------------------- /modules/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/python/README.md -------------------------------------------------------------------------------- /modules/python/functions/python-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/python/functions/python-info -------------------------------------------------------------------------------- /modules/python/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/python/init.zsh -------------------------------------------------------------------------------- /modules/rails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/rails/README.md -------------------------------------------------------------------------------- /modules/rails/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/rails/init.zsh -------------------------------------------------------------------------------- /modules/rsync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/rsync/README.md -------------------------------------------------------------------------------- /modules/rsync/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/rsync/init.zsh -------------------------------------------------------------------------------- /modules/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/ruby/README.md -------------------------------------------------------------------------------- /modules/ruby/functions/ruby-app-root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/ruby/functions/ruby-app-root -------------------------------------------------------------------------------- /modules/ruby/functions/ruby-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/ruby/functions/ruby-info -------------------------------------------------------------------------------- /modules/ruby/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/ruby/init.zsh -------------------------------------------------------------------------------- /modules/screen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/screen/README.md -------------------------------------------------------------------------------- /modules/screen/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/screen/init.zsh -------------------------------------------------------------------------------- /modules/spectrum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/spectrum/README.md -------------------------------------------------------------------------------- /modules/spectrum/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/spectrum/init.zsh -------------------------------------------------------------------------------- /modules/ssh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/ssh/README.md -------------------------------------------------------------------------------- /modules/ssh/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/ssh/init.zsh -------------------------------------------------------------------------------- /modules/syntax-highlighting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/syntax-highlighting/README.md -------------------------------------------------------------------------------- /modules/syntax-highlighting/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/syntax-highlighting/init.zsh -------------------------------------------------------------------------------- /modules/terminal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/terminal/README.md -------------------------------------------------------------------------------- /modules/terminal/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/terminal/init.zsh -------------------------------------------------------------------------------- /modules/tmux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/tmux/README.md -------------------------------------------------------------------------------- /modules/tmux/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/tmux/init.zsh -------------------------------------------------------------------------------- /modules/utility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/utility/README.md -------------------------------------------------------------------------------- /modules/utility/functions/_cdls_popdls_pushdls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/utility/functions/_cdls_popdls_pushdls -------------------------------------------------------------------------------- /modules/utility/functions/_dut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/utility/functions/_dut -------------------------------------------------------------------------------- /modules/utility/functions/_mkdcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/utility/functions/_mkdcd -------------------------------------------------------------------------------- /modules/utility/functions/_prep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/utility/functions/_prep -------------------------------------------------------------------------------- /modules/utility/functions/_psub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/utility/functions/_psub -------------------------------------------------------------------------------- /modules/utility/functions/diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/utility/functions/diff -------------------------------------------------------------------------------- /modules/utility/functions/dut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/utility/functions/dut -------------------------------------------------------------------------------- /modules/utility/functions/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/utility/functions/make -------------------------------------------------------------------------------- /modules/utility/functions/prep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/utility/functions/prep -------------------------------------------------------------------------------- /modules/utility/functions/psub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/utility/functions/psub -------------------------------------------------------------------------------- /modules/utility/functions/wdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/utility/functions/wdiff -------------------------------------------------------------------------------- /modules/utility/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/utility/init.zsh -------------------------------------------------------------------------------- /modules/wakeonlan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/wakeonlan/README.md -------------------------------------------------------------------------------- /modules/wakeonlan/functions/_wake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/wakeonlan/functions/_wake -------------------------------------------------------------------------------- /modules/wakeonlan/functions/wake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/wakeonlan/functions/wake -------------------------------------------------------------------------------- /modules/yum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/yum/README.md -------------------------------------------------------------------------------- /modules/yum/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/yum/init.zsh -------------------------------------------------------------------------------- /modules/zsh-notify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/zsh-notify/README.md -------------------------------------------------------------------------------- /modules/zsh-notify/init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/modules/zsh-notify/init.zsh -------------------------------------------------------------------------------- /runcoms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/runcoms/README.md -------------------------------------------------------------------------------- /runcoms/zlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/runcoms/zlogin -------------------------------------------------------------------------------- /runcoms/zlogout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/runcoms/zlogout -------------------------------------------------------------------------------- /runcoms/zpreztorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/runcoms/zpreztorc -------------------------------------------------------------------------------- /runcoms/zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/runcoms/zprofile -------------------------------------------------------------------------------- /runcoms/zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/runcoms/zshenv -------------------------------------------------------------------------------- /runcoms/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prezto-inactive-community-fork/prezto/HEAD/runcoms/zshrc --------------------------------------------------------------------------------