Skip to content

Commit 12ca79c

Browse files
committed
feat: improve codely zsh multiline theme
1 parent 69bcaca commit 12ca79c

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

scripts/core/short_pwd

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,9 @@ source "$DOTLY_PATH/scripts/core/_main.sh"
1212
if [[ $(pwd) == "$HOME" ]]; then
1313
echo "~"
1414
else
15-
echo ${${${:-/${(j:/:)${(M)${(s:/:)${(D)PWD:h}}#(|.)[^.]}}/${PWD:t}}//\/~/\~}/\/\//\/}
15+
current_dir=$(pwd)
16+
penultimate_dir=$(/usr/bin/basename "$(dirname "$current_dir")" | cut -c1-2)
17+
path=$(dirname "$(dirname "$current_dir")" | sed "s|$HOME|~|g" | sed -E 's|/([^/])[^/]*|/\1|g')
18+
19+
echo "$path/$penultimate_dir/$(/usr/bin/basename "$current_dir")"
1620
fi

scripts/dotfiles/import

-5
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,3 @@ source "$DOTLY_PATH/scripts/core/_main.sh"
1010
##? import [dotfiles_path]
1111
##?
1212
docs::parse "$@"
13-
14-
## .zshrc
15-
## .bash
16-
## .gitconfig
17-
## .gitignore_global

shell/zsh/themes/prompt_codely_setup

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ prompt_codely_setup() {
7373
fi
7474

7575
if [ "$CODELY_THEME_PROMPT_IN_NEW_LINE" = true ]; then
76-
PS1="$PS1"$'\n└➤ '
76+
PS1="$PS1"$'\n%F{white}╰ '
7777
fi
7878

7979
RPS1=''

0 commit comments

Comments
 (0)