Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moved git-info right after user@host and moved cursor on a new line #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions agnoster.zsh-theme
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

CURRENT_BG='NONE'
if [[ -z "$PRIMARY_FG" ]]; then
PRIMARY_FG=black
PRIMARY_FG=black
fi

# Characters
Expand Down Expand Up @@ -131,15 +131,22 @@ prompt_virtualenv() {
fi
}

# Put cursor on a new line
prompt_cursor(){
prompt_segment
print -n "\n$SEGMENT_SEPARATOR"
}

## Main prompt
prompt_agnoster_main() {
RETVAL=$?
CURRENT_BG='NONE'
prompt_status
prompt_context
prompt_git
prompt_virtualenv
prompt_dir
prompt_git
prompt_cursor
prompt_end
}

Expand Down