summaryrefslogtreecommitdiff
path: root/zsh/lukerandall-d.zsh-theme
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2022-02-03 22:39:12 +0100
committerSanto Cariotti <santo@dcariotti.me>2022-02-03 22:39:12 +0100
commit29204476ec351ce668379e5bb6f0bd0ab8facd51 (patch)
treef8c5db7b7a2254e463be933bb62e9686c9fb9178 /zsh/lukerandall-d.zsh-theme
parentb9330e10fff380c883e4f01776c27b9d76025495 (diff)
zsh: add theme
Diffstat (limited to 'zsh/lukerandall-d.zsh-theme')
-rw-r--r--zsh/lukerandall-d.zsh-theme28
1 files changed, 28 insertions, 0 deletions
diff --git a/zsh/lukerandall-d.zsh-theme b/zsh/lukerandall-d.zsh-theme
new file mode 100644
index 0000000..75a7606
--- /dev/null
+++ b/zsh/lukerandall-d.zsh-theme
@@ -0,0 +1,28 @@
+# ZSH Theme - Preview: https://cl.ly/f701d00760f8059e06dc
+# Thanks to gallifrey, upon whose theme this is based
+
+local return_code="%(?..%{$fg_bold[red]%}%? ↵%{$reset_color%})"
+
+function my_git_prompt_info() {
+ ref=$(git symbolic-ref HEAD 2> /dev/null) || return
+ GIT_STATUS=$(git_prompt_status)
+ [[ -n $GIT_STATUS ]] && GIT_STATUS=" $GIT_STATUS"
+ echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$GIT_STATUS$ZSH_THEME_GIT_PROMPT_SUFFIX"
+}
+
+function path() {
+ echo ${${:-/${(j:/:)${(M)${(s:/:)${(D)PWD:h}}#(|.)[^.]}}/${PWD:t}}//\/~/\~}
+}
+
+PROMPT='%{$fg_bold[green]%}%n@%m%{$reset_color%} %{$fg_bold[yellow]%}$(path)%{$reset_color%} $(my_git_prompt_info)%{$reset_color%}%B$%b '
+RPS1="${return_code}"
+
+ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[cyan]%}("
+ZSH_THEME_GIT_PROMPT_SUFFIX=") %{$reset_color%}"
+ZSH_THEME_GIT_PROMPT_UNTRACKED="%%"
+ZSH_THEME_GIT_PROMPT_ADDED="+"
+ZSH_THEME_GIT_PROMPT_MODIFIED="*"
+ZSH_THEME_GIT_PROMPT_RENAMED="~"
+ZSH_THEME_GIT_PROMPT_DELETED="!"
+ZSH_THEME_GIT_PROMPT_UNMERGED="?"
+