From 02f14a9cb152561a5e44062aac79f3b700403b40 Mon Sep 17 00:00:00 2001 From: navewindre Date: Sun, 13 Jul 2025 06:42:05 +0200 Subject: omz --- home/.oh-my-zsh/plugins/starship/README.md | 21 +++++++++++++++++++++ .../.oh-my-zsh/plugins/starship/starship.plugin.zsh | 8 ++++++++ 2 files changed, 29 insertions(+) create mode 100644 home/.oh-my-zsh/plugins/starship/README.md create mode 100644 home/.oh-my-zsh/plugins/starship/starship.plugin.zsh (limited to 'home/.oh-my-zsh/plugins/starship') diff --git a/home/.oh-my-zsh/plugins/starship/README.md b/home/.oh-my-zsh/plugins/starship/README.md new file mode 100644 index 0000000..0e66c52 --- /dev/null +++ b/home/.oh-my-zsh/plugins/starship/README.md @@ -0,0 +1,21 @@ +# starship plugin + +Initializes [starship prompt](https://starship.rs) - a minimal, blazing-fast and infinitely customizable cross-shell prompt. + +[Demo](https://user-images.githubusercontent.com/62098008/169764279-50b48262-9506-4651-ba89-f6611a88ebf0.mp4) + +[External repository](https://github.com/axieax/zsh-starship) for this zsh plugin. + +# Installation + +**Note:** you have to [install starship](https://starship.rs/guide/#%F0%9F%9A%80-installation) first. + +## [oh-my-zsh](https://github.com/ohmyzsh/ohmyzsh) + +Add `starship` to the plugins array in your `.zshrc` file: + +```zsh +plugins=(... starship) +``` + +## ⚠️ ENABLING THIS PLUGIN WILL UNSET YOUR ZSH_THEME VARIABLE diff --git a/home/.oh-my-zsh/plugins/starship/starship.plugin.zsh b/home/.oh-my-zsh/plugins/starship/starship.plugin.zsh new file mode 100644 index 0000000..fc415e6 --- /dev/null +++ b/home/.oh-my-zsh/plugins/starship/starship.plugin.zsh @@ -0,0 +1,8 @@ +if (( $+commands[starship] )); then + # ignore oh-my-zsh theme + unset ZSH_THEME + + eval "$(starship init zsh)" +else + echo '[oh-my-zsh] starship not found, please install it from https://starship.rs' +fi -- cgit v1.2.3