Skip to content

Commit b1ed0ec

Browse files
committed
feat(zsh-theme): don't load changes if it's an LFS repository
1 parent 12ca79c commit b1ed0ec

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

shell/zsh/themes/prompt_codely_setup

+14-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CODELY_THEME_PWD_MODE=${CODELY_THEME_PWD_MODE:-"short"} # full, short, home_rela
88
CODELY_THEME_STATUS_ICON_OK=${CODELY_THEME_STATUS_ICON_OK:-""}
99
CODELY_THEME_STATUS_ICON_KO=${CODELY_THEME_STATUS_ICON_KO:-""}
1010

11-
[[ $(echotc Co) -gt 100 ]] && support_color_tones=true || support_color_tones=false
11+
[[ $(echotc Co) -gt 100 ]] && support_color_tones=true || support_color_tones=false
1212

1313
git_no_changes_status=""
1414
git_dirty_status=""
@@ -45,12 +45,23 @@ prompt_codely_pwd() {
4545
print -n "%F{$pwd_color}${prompt_dir}"
4646
}
4747

48+
is_lfs_directory() {
49+
[[ -f ".gitattributes" ]] && grep -q "filter=lfs" .gitattributes
50+
}
51+
4852
prompt_codely_git() {
49-
[[ -n ${git_info} ]] && print -n "%F{$git_on_branch_color} on${(e)git_info[prompt]}"
53+
if is_lfs_directory; then
54+
git_branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null)
55+
[[ -n $git_branch ]] && print -n "%F{$git_on_branch_color}  %F{$git_branch_color}${git_branch}"
56+
else
57+
[[ -n ${git_info} ]] && print -n "%F{$git_on_branch_color} ${(e)git_info[prompt]}"
58+
fi
5059
}
5160

5261
prompt_codely_precmd() {
53-
(( ${+functions[git-info]} )) && git-info
62+
if ! is_lfs_directory; then
63+
(( ${+functions[git-info]} )) && git-info
64+
fi
5465
}
5566

5667
prompt_codely_setup() {

0 commit comments

Comments
 (0)