gitextract_da2eg8c5/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── init.zsh ├── modules/ │ ├── README.md │ ├── archive/ │ │ ├── README.md │ │ └── functions/ │ │ ├── _lsarchive │ │ ├── _unarchive │ │ ├── archive │ │ ├── lsarchive │ │ └── unarchive │ ├── autosuggestions/ │ │ ├── README.md │ │ └── init.zsh │ ├── command-not-found/ │ │ ├── README.md │ │ └── init.zsh │ ├── completion/ │ │ ├── README.md │ │ └── init.zsh │ ├── directory/ │ │ ├── README.md │ │ └── init.zsh │ ├── dnf/ │ │ ├── README.md │ │ └── init.zsh │ ├── docker/ │ │ ├── README.md │ │ ├── alias.zsh │ │ └── 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 │ ├── 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-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/ │ │ ├── README.md │ │ └── init.zsh │ ├── history-substring-search/ │ │ ├── README.md │ │ └── init.zsh │ ├── homebrew/ │ │ ├── README.md │ │ └── init.zsh │ ├── macports/ │ │ ├── README.md │ │ └── init.zsh │ ├── node/ │ │ ├── README.md │ │ ├── functions/ │ │ │ ├── _grunt │ │ │ ├── _gulp │ │ │ ├── node-doc │ │ │ └── node-info │ │ └── init.zsh │ ├── ocaml/ │ │ ├── README.md │ │ └── init.zsh │ ├── osx/ │ │ ├── README.md │ │ ├── functions/ │ │ │ ├── _mand_manp │ │ │ ├── mand │ │ │ ├── manp │ │ │ ├── osx-ls-download-history │ │ │ ├── osx-rm-dir-metadata │ │ │ ├── osx-rm-download-history │ │ │ ├── pfd │ │ │ ├── pfs │ │ │ ├── ql │ │ │ ├── tab │ │ │ └── trash │ │ └── init.zsh │ ├── pacman/ │ │ ├── README.md │ │ ├── functions/ │ │ │ ├── pacman-list-disowned │ │ │ └── pacman-list-explicit │ │ └── init.zsh │ ├── perl/ │ │ ├── README.md │ │ ├── functions/ │ │ │ └── perl-info │ │ └── init.zsh │ ├── prompt/ │ │ ├── README.md │ │ ├── functions/ │ │ │ ├── prompt-pwd │ │ │ ├── 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_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 │ │ │ ├── _noremoteglob │ │ │ ├── _prep │ │ │ ├── _psub │ │ │ ├── diff │ │ │ ├── dut │ │ │ ├── make │ │ │ ├── prep │ │ │ ├── psub │ │ │ ├── wdiff │ │ │ └── zsh-help │ │ └── init.zsh │ ├── wakeonlan/ │ │ ├── README.md │ │ └── functions/ │ │ ├── _wake │ │ └── wake │ └── yum/ │ ├── README.md │ └── init.zsh └── runcoms/ ├── README.md ├── zlogin ├── zlogout ├── zpreztorc ├── zprofile ├── zshenv └── zshrc