gitextract_1l1cb4dc/ ├── .editorconfig ├── .git-blame-ignore-revs ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── format.yml │ ├── test.sh │ └── test.yml ├── .gitignore ├── .shellcheckrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── aliases/ │ ├── README.md │ ├── cargo.aliases.md │ ├── cargo.aliases.sh │ ├── chmod.aliases.sh │ ├── debian.aliases.bash │ ├── debian.aliases.md │ ├── docker.aliases.md │ ├── docker.aliases.sh │ ├── general.aliases.md │ ├── general.aliases.sh │ ├── ls.aliases.sh │ ├── misc.aliases.sh │ ├── package-manager.aliases.bash │ ├── package-manager.aliases.md │ ├── terraform.aliases.md │ └── terraform.aliases.sh ├── cache/ │ └── .gitkeep ├── completions/ │ ├── apm.completion.sh │ ├── asdf.completion.sh │ ├── awscli.completion.sh │ ├── brew.completion.sh │ ├── bundler.completion.sh │ ├── capistrano.completion.sh │ ├── chezmoi.completion.sh │ ├── composer.completion.sh │ ├── conda.completion.sh │ ├── crc.completion.sh │ ├── defaults.completion.sh │ ├── dirs.completion.sh │ ├── django.completion.sh │ ├── docker-compose.completion.sh │ ├── docker-machine.completion.sh │ ├── docker.completion.sh │ ├── drush.completion.sh │ ├── fabric-completion.sh │ ├── fallback/ │ │ ├── docker-compose.bash │ │ └── docker.bash │ ├── gem.completion.sh │ ├── gh.completion.sh │ ├── git.completion.bash │ ├── git_flow.completion.sh │ ├── git_flow_avh.completion.sh │ ├── go.completion.sh │ ├── gradle.completion.sh │ ├── grunt.completion.sh │ ├── gulp.completion.sh │ ├── helm.completion.sh │ ├── homesick.completion.sh │ ├── hub.completion.sh │ ├── jboss7.completion.sh │ ├── jump.completion.sh │ ├── jungle.completion.sh │ ├── kontena.completion.sh │ ├── kubectl.completion.sh │ ├── makefile.completion.sh │ ├── maven.completion.sh │ ├── minikube.completion.sh │ ├── npm.completion.sh │ ├── nvm.completion.sh │ ├── oc.completion.sh │ ├── packer.completion.sh │ ├── pip.completion.sh │ ├── pip3.completion.sh │ ├── projects.completion.sh │ ├── rake.completion.sh │ ├── salt.completion.sh │ ├── sdkman.completion.sh │ ├── ssh.completion.sh │ ├── svn.completion.sh │ ├── system.completion.sh │ ├── terraform.completion.sh │ ├── test_kitchen.completion.sh │ ├── tkn.completion.sh │ ├── tmux.completion.sh │ ├── todo.completion.sh │ ├── uv.completion.sh │ ├── vagrant.completion.sh │ ├── vault.completion.sh │ └── virtualbox.completion.sh ├── lib/ │ ├── base.sh │ ├── bourne-shell.sh │ ├── cli.bash │ ├── directories.sh │ ├── functions.sh │ ├── git.sh │ ├── grep.sh │ ├── history.sh │ ├── misc.sh │ ├── mo.sh │ ├── nvm.sh │ ├── omb-completion.sh │ ├── omb-deprecate.sh │ ├── omb-prompt-base.sh │ ├── omb-prompt-colors.sh │ ├── omb-util.sh │ ├── readlink.sh │ ├── shopt.sh │ ├── spectrum.sh │ ├── spinner.sh │ ├── theme-and-appearance.sh │ └── utils.sh ├── log/ │ └── .gitkeep ├── oh-my-bash.sh ├── plugins/ │ ├── README.md │ ├── ansible/ │ │ ├── README.md │ │ └── ansible.plugin.sh │ ├── asdf/ │ │ ├── README.md │ │ └── asdf.plugin.sh │ ├── aws/ │ │ └── aws.plugin.sh │ ├── bash-preexec/ │ │ ├── README.md │ │ └── bash-preexec.plugin.sh │ ├── bashmarks/ │ │ ├── README.md │ │ └── bashmarks.plugin.sh │ ├── battery/ │ │ ├── README.md │ │ └── battery.plugin.sh │ ├── brew/ │ │ ├── README.md │ │ └── brew.plugin.sh │ ├── bu/ │ │ └── bu.plugin.sh │ ├── cargo/ │ │ ├── README.md │ │ └── cargo.plugin.sh │ ├── chezmoi/ │ │ ├── README.md │ │ └── chezmoi.plugin.sh │ ├── colored-man-pages/ │ │ ├── README.md │ │ └── colored-man-pages.plugin.sh │ ├── dotnet/ │ │ ├── README.md │ │ └── dotnet.plugin.sh │ ├── fasd/ │ │ └── fasd.plugin.sh │ ├── fzf/ │ │ ├── README.md │ │ └── fzf.plugin.sh │ ├── gcloud/ │ │ ├── README.md │ │ └── gcloud.plugin.sh │ ├── git/ │ │ ├── README.md │ │ └── git.plugin.sh │ ├── goenv/ │ │ ├── README.md │ │ └── goenv.plugin.sh │ ├── golang/ │ │ ├── README.md │ │ └── golang.plugin.sh │ ├── jump/ │ │ ├── README.md │ │ └── jump.plugin.sh │ ├── kubectl/ │ │ ├── README.md │ │ └── kubectl.plugin.sh │ ├── npm/ │ │ ├── README.md │ │ └── npm.plugin.sh │ ├── nvm/ │ │ ├── README.md │ │ └── nvm.plugin.sh │ ├── progress/ │ │ ├── README.md │ │ └── progress.plugin.sh │ ├── pyenv/ │ │ ├── README.md │ │ └── pyenv.plugin.sh │ ├── rbenv/ │ │ ├── README.md │ │ └── rbenv.plugin.sh │ ├── sdkman/ │ │ ├── README.md │ │ └── sdkman.plugin.sh │ ├── starship/ │ │ ├── README.md │ │ └── starship.plugin.sh │ ├── sudo/ │ │ ├── README.md │ │ └── sudo.plugin.sh │ ├── tmux/ │ │ ├── README.md │ │ └── tmux.plugin.bash │ ├── tmux-autoattach/ │ │ ├── README.md │ │ └── tmux-autoattach.plugin.sh │ ├── vagrant/ │ │ ├── README.md │ │ └── vagrant.plugin.sh │ ├── virtualenvwrapper/ │ │ ├── README.md │ │ └── virtualenvwrapper.plugin.sh │ ├── xterm/ │ │ ├── README.md │ │ └── xterm.plugin.bash │ ├── zellij-autoattach/ │ │ ├── README.md │ │ └── zellij-autoattach.plugin.sh │ └── zoxide/ │ ├── README.md │ └── zoxide.plugin.sh ├── templates/ │ ├── bash_profile.osh-template │ └── bashrc.osh-template ├── themes/ │ ├── 90210/ │ │ ├── 90210.theme.sh │ │ └── README.md │ ├── THEMES.md │ ├── absimple/ │ │ ├── README.md │ │ └── absimple.theme.sh │ ├── agnoster/ │ │ ├── README.md │ │ └── agnoster.theme.sh │ ├── axin/ │ │ ├── README.md │ │ └── axin.theme.sh │ ├── bakke/ │ │ ├── README.md │ │ └── bakke.theme.sh │ ├── binaryanomaly/ │ │ ├── README.md │ │ └── binaryanomaly.theme.sh │ ├── bobby/ │ │ ├── README.md │ │ └── bobby.theme.sh │ ├── bobby-python/ │ │ └── bobby-python.theme.sh │ ├── brainy/ │ │ ├── README.md │ │ └── brainy.theme.sh │ ├── brunton/ │ │ └── brunton.theme.sh │ ├── candy/ │ │ └── candy.theme.sh │ ├── clean/ │ │ └── clean.theme.sh │ ├── cooperkid/ │ │ └── cooperkid.theme.sh │ ├── copied-duru/ │ │ ├── README.md │ │ └── copied-duru.theme.sh │ ├── cupcake/ │ │ └── cupcake.theme.sh │ ├── demula/ │ │ └── demula.theme.sh │ ├── developer/ │ │ └── developer.theme.sh │ ├── dos/ │ │ └── dos.theme.sh │ ├── doubletime/ │ │ └── doubletime.theme.sh │ ├── doubletime_multiline/ │ │ └── doubletime_multiline.theme.sh │ ├── doubletime_multiline_pyonly/ │ │ └── doubletime_multiline_pyonly.theme.sh │ ├── dulcie/ │ │ └── dulcie.theme.sh │ ├── duru/ │ │ └── duru.theme.sh │ ├── edsonarios/ │ │ └── edsonarios.theme.sh │ ├── emperor/ │ │ └── emperor.theme.sh │ ├── envy/ │ │ └── envy.theme.sh │ ├── font/ │ │ └── font.theme.sh │ ├── gallifrey/ │ │ └── gallifrey.theme.sh │ ├── garo/ │ │ └── garo.theme.sh │ ├── half-life/ │ │ └── half-life.theme.sh │ ├── hawaii50/ │ │ └── hawaii50.theme.sh │ ├── ht/ │ │ └── ht.theme.sh │ ├── iterate/ │ │ └── iterate.theme.sh │ ├── kitsune/ │ │ └── kitsune.theme.sh │ ├── lambda/ │ │ └── lambda.theme.sh │ ├── luan/ │ │ └── luan.theme.sh │ ├── lucky/ │ │ └── lucky.theme.sh │ ├── mairan/ │ │ └── mairan.theme.sh │ ├── mbriggs/ │ │ └── mbriggs.theme.sh │ ├── minimal/ │ │ └── minimal.theme.sh │ ├── minimal-gh/ │ │ └── minimal-gh.theme.sh │ ├── modern/ │ │ └── modern.theme.sh │ ├── modern-t/ │ │ └── modern-t.theme.sh │ ├── morris/ │ │ └── morris.theme.sh │ ├── n0qorg/ │ │ └── n0qorg.theme.sh │ ├── nekolight/ │ │ ├── README.md │ │ └── nekolight.theme.sh │ ├── nekonight/ │ │ ├── nekonight.base.sh │ │ └── nekonight.theme.sh │ ├── nekonight_moon/ │ │ └── nekonight_moon.theme.sh │ ├── nwinkler/ │ │ └── nwinkler.theme.sh │ ├── nwinkler_random_colors/ │ │ ├── README.md │ │ └── nwinkler_random_colors.theme.sh │ ├── pete/ │ │ └── pete.theme.sh │ ├── powerbash10k/ │ │ ├── README.md │ │ └── powerbash10k.theme.sh │ ├── powerline/ │ │ ├── README.md │ │ ├── powerline.base.sh │ │ └── powerline.theme.sh │ ├── powerline-icon/ │ │ ├── README.md │ │ ├── powerline-icon.base.sh │ │ └── powerline-icon.theme.sh │ ├── powerline-light/ │ │ ├── README.md │ │ └── powerline-light.theme.sh │ ├── powerline-multiline/ │ │ ├── README.md │ │ ├── powerline-multiline.base.sh │ │ └── powerline-multiline.theme.sh │ ├── powerline-naked/ │ │ ├── README.md │ │ ├── powerline-naked.base.sh │ │ └── powerline-naked.theme.sh │ ├── powerline-plain/ │ │ ├── README.md │ │ ├── powerline-plain.base.sh │ │ └── powerline-plain.theme.sh │ ├── powerline-wizard/ │ │ ├── README.md │ │ └── powerline-wizard.theme.sh │ ├── primer/ │ │ └── primer.theme.sh │ ├── pro/ │ │ └── pro.theme.sh │ ├── pure/ │ │ └── pure.theme.sh │ ├── purity/ │ │ └── purity.theme.sh │ ├── pzq/ │ │ └── pzq.theme.sh │ ├── rainbowbrite/ │ │ └── rainbowbrite.theme.sh │ ├── rana/ │ │ └── rana.theme.sh │ ├── random/ │ │ ├── README.md │ │ └── random.theme.bash │ ├── rjorgenson/ │ │ └── rjorgenson.theme.sh │ ├── robbyrussell/ │ │ └── robbyrussell.theme.sh │ ├── roderik/ │ │ └── roderik.theme.sh │ ├── rr/ │ │ └── rr.theme.sh │ ├── sexy/ │ │ └── sexy.theme.sh │ ├── simple/ │ │ └── simple.theme.sh │ ├── sirup/ │ │ └── sirup.theme.sh │ ├── slick/ │ │ └── slick.theme.sh │ ├── standard/ │ │ └── standard.theme.sh │ ├── tonka/ │ │ └── tonka.theme.sh │ ├── tonotdo/ │ │ └── tonotdo.theme.sh │ ├── tylenol/ │ │ └── tylenol.theme.sh │ ├── vscode/ │ │ └── vscode.theme.sh │ ├── wanelo/ │ │ └── wanelo.theme.sh │ ├── zitron/ │ │ └── zitron.theme.sh │ └── zork/ │ └── zork.theme.sh └── tools/ ├── autossh.sh ├── bash-preexec.sh ├── check_for_upgrade.sh ├── git-completion.bash ├── git-prompt.sh ├── install.sh ├── uninstall.sh ├── update-wiki-themes.sh └── upgrade.sh