Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
c1726243
Unverified
Commit
c1726243
authored
Nov 30, 2021
by
Marc Cornellà
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style(af-magic): fix code style and remove unnecessary variables
parent
1c070018
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
32 deletions
+31
-32
af-magic.zsh-theme
themes/af-magic.zsh-theme
+31
-32
No files found.
themes/af-magic.zsh-theme
View file @
c1726243
# af-magic.zsh-theme
# af-magic.zsh-theme
# Repo: https://github.com/andyfleming/oh-my-zsh
#
# Direct Link: https://github.com/andyfleming/oh-my-zsh/blob/master/themes/af-magic.zsh-theme
# Author: Andy Fleming
# URL: http://andyfleming.com/
# dashed separator size
# settings
typeset +H return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
typeset +H my_gray="$FG[237]"
typeset +H my_orange="$FG[214]"
# separator dashes size
function afmagic_dashes {
function afmagic_dashes {
local PYTHON_ENV="$VIRTUAL_ENV"
# check either virtualenv or condaenv variables
[[ -z "$PYTHON_ENV" ]] && PYTHON_ENV="$CONDA_DEFAULT_ENV"
local python_env="${VIRTUAL_ENV:-$CONDA_DEFAULT_ENV}"
if [[ -n "$PYTHON_ENV" && "$PS1" = \(* ]]; then
# if there is a python virtual environment and it is displayed in
echo $(( COLUMNS - ${#PYTHON_ENV} - 3 ))
# the prompt, account for it when returning the number of dashes
else
if [[ -n "$python_env" && "$PS1" = \(* ]]; then
echo $COLUMNS
echo $(( COLUMNS - ${#python_env} - 3 ))
fi
else
echo $COLUMNS
fi
}
}
# primary prompt
# primary prompt: dashed separator, directory and vcs info
PS1='$FG[237]${(l.$(afmagic_dashes)..-.)}%{$reset_color%}
PS1="${FG[237]}\${(l.\$(afmagic_dashes)..-.)}%{$reset_color%}
$FG[032]%~$(git_prompt_info)$(hg_prompt_info) $FG[105]%(!.#.»)%{$reset_color%} '
${FG[032]}%~\$(git_prompt_info)\$(hg_prompt_info) ${FG[105]}%(!.#.»)%{$reset_color%} "
PS2='%{$fg[red]%}\ %{$reset_color%}'
PS2="%{$fg[red]%}\ %{$reset_color%}"
RPS1='${return_code}'
# right prompt
# right prompt: return code, virtualenv and context (user@host)
(( $+functions[virtualenv_prompt_info] )) && RPS1+='$(virtualenv_prompt_info)'
RPS1="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
RPS1+=' $my_gray%n@%m%{$reset_color%}%'
if (( $+functions[virtualenv_prompt_info] )); then
RPS1+='$(virtualenv_prompt_info)'
fi
RPS1+=" ${FG[237]}%n@%m%{$reset_color%}"
# git settings
# git settings
ZSH_THEME_GIT_PROMPT_PREFIX="$
FG[075]($FG[078]
"
ZSH_THEME_GIT_PROMPT_PREFIX="$
{FG[075]}(${FG[078]}
"
ZSH_THEME_GIT_PROMPT_CLEAN=""
ZSH_THEME_GIT_PROMPT_CLEAN=""
ZSH_THEME_GIT_PROMPT_DIRTY="$
my_orange
*%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY="$
{FG[214]}
*%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="$
FG[075]
)%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="$
{FG[075]}
)%{$reset_color%}"
# hg settings
# hg settings
ZSH_THEME_HG_PROMPT_PREFIX="$
FG[075]($FG[078]
"
ZSH_THEME_HG_PROMPT_PREFIX="$
{FG[075]}(${FG[078]}
"
ZSH_THEME_HG_PROMPT_CLEAN=""
ZSH_THEME_HG_PROMPT_CLEAN=""
ZSH_THEME_HG_PROMPT_DIRTY="$
my_orange
*%{$reset_color%}"
ZSH_THEME_HG_PROMPT_DIRTY="$
{FG[214]}
*%{$reset_color%}"
ZSH_THEME_HG_PROMPT_SUFFIX="$
FG[075]
)%{$reset_color%}"
ZSH_THEME_HG_PROMPT_SUFFIX="$
{FG[075]}
)%{$reset_color%}"
# virtualenv settings
# virtualenv settings
ZSH_THEME_VIRTUALENV_PREFIX=" $
FG[075]
["
ZSH_THEME_VIRTUALENV_PREFIX=" $
{FG[075]}
["
ZSH_THEME_VIRTUALENV_SUFFIX="]%{$reset_color%}"
ZSH_THEME_VIRTUALENV_SUFFIX="]%{$reset_color%}"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment