gitextract_gwai6qs0/ ├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── config/ │ ├── p10k-classic.zsh │ ├── p10k-lean-8colors.zsh │ ├── p10k-lean.zsh │ ├── p10k-pure.zsh │ ├── p10k-rainbow.zsh │ └── p10k-robbyrussell.zsh ├── font.md ├── gitstatus/ │ ├── .clang-format │ ├── .gitattributes │ ├── .gitignore │ ├── .vscode/ │ │ ├── c_cpp_properties.json │ │ └── settings.json │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── build │ ├── build.info │ ├── deps/ │ │ └── .gitkeep │ ├── docs/ │ │ └── listdir.md │ ├── gitstatus.plugin.sh │ ├── gitstatus.plugin.zsh │ ├── gitstatus.prompt.sh │ ├── gitstatus.prompt.zsh │ ├── install │ ├── install.info │ ├── mbuild │ ├── src/ │ │ ├── algorithm.h │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── bits.h │ │ ├── check.h │ │ ├── check_dir_mtime.cc │ │ ├── check_dir_mtime.h │ │ ├── dir.cc │ │ ├── dir.h │ │ ├── git.cc │ │ ├── git.h │ │ ├── gitstatus.cc │ │ ├── index.cc │ │ ├── index.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── options.cc │ │ ├── options.h │ │ ├── print.h │ │ ├── repo.cc │ │ ├── repo.h │ │ ├── repo_cache.cc │ │ ├── repo_cache.h │ │ ├── request.cc │ │ ├── request.h │ │ ├── response.cc │ │ ├── response.h │ │ ├── scope_guard.h │ │ ├── serialization.h │ │ ├── stat.h │ │ ├── string_cmp.h │ │ ├── string_view.h │ │ ├── strings.cc │ │ ├── strings.h │ │ ├── tag_db.cc │ │ ├── tag_db.h │ │ ├── thread_pool.cc │ │ ├── thread_pool.h │ │ ├── time.h │ │ ├── timer.cc │ │ ├── timer.h │ │ └── tribool.h │ └── usrbin/ │ └── .gitkeep ├── internal/ │ ├── configure.zsh │ ├── icons.zsh │ ├── notes.md │ ├── p10k.zsh │ ├── parser.zsh │ ├── wizard.zsh │ └── worker.zsh ├── powerlevel10k.zsh-theme ├── powerlevel9k.zsh-theme ├── prompt_powerlevel10k_setup └── prompt_powerlevel9k_setup