Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
66bae5a5
Commit
66bae5a5
authored
Mar 30, 2017
by
Marc Cornellà
Browse files
Merge branch 'rename-pure-theme'
parents
b4b55fa5
aaf7fa00
Changes
2
Hide whitespace changes
Inline
Side-by-side
themes/pure.zsh-theme
View file @
66bae5a5
#!/usr/bin/env zsh
print -P '%F{yellow}'Oh My Zsh pure theme:
cat <<-EOF
# ------------------------------------------------------------------------------
#
# Pure - A minimal and beautiful theme for oh-my-zsh
#
# Based on the custom Zsh-prompt of the same name by Sindre Sorhus. A huge
# thanks goes out to him for designing the fantastic Pure prompt in the first
# place! I'd also like to thank Julien Nicoulaud for his "nicoulaj" theme from
# which I've borrowed both some ideas and some actual code. You can find out
# more about both of these fantastic two people here:
#
# Sindre Sorhus
# Github: https://github.com/sindresorhus
# Twitter: https://twitter.com/sindresorhus
#
# Julien Nicoulaud
# Github: https://github.com/nicoulaj
# Twitter: https://twitter.com/nicoulaj
#
# ------------------------------------------------------------------------------
The pure theme has been renamed as 'refined' as per the original author's
request. Change your ZSH_THEME to 'refined' to avoid seeing this warning.
# Set required options
#
setopt prompt_subst
EOF
print -P '%f'
# Load required modules
#
autoload
-Uz
vcs_info
# Set vcs_info parameters
#
zstyle
':vcs_info:*'
enable
hg bzr git
zstyle
':vcs_info:*:*'
unstagedstr
'!'
zstyle
':vcs_info:*:*'
stagedstr
'+'
zstyle
':vcs_info:*:*'
formats
"
$FX
[bold]%r
$FX
[no-bold]/%S"
"%s/%b"
"%%u%c"
zstyle
':vcs_info:*:*'
actionformats
"
$FX
[bold]%r
$FX
[no-bold]/%S"
"%s/%b"
"%u%c (%a)"
zstyle
':vcs_info:*:*'
nvcsformats
"%~"
""
""
# Fastest possible way to check if repo is dirty
#
git_dirty
()
{
# Check if we're in a git repo
command
git rev-parse
--is-inside-work-tree
&>/dev/null
||
return
# Check if it's dirty
command
git diff
--quiet
--ignore-submodules
HEAD &>/dev/null
;
[
$?
-eq
1
]
&&
echo
"*"
}
# Display information about the current repository
#
repo_information
()
{
echo
"%F{blue}
${
vcs_info_msg_0_
%%/.
}
%F{8}
$vcs_info_msg_1_
`
git_dirty
`
$vcs_info_msg_2_
%f"
}
# Displays the exec time of the last command if set threshold was exceeded
#
cmd_exec_time
()
{
local
stop
=
`
date
+%s
`
local
start
=
${
cmd_timestamp
:-
$stop
}
let local
elapsed
=
$stop
-
$start
[
$elapsed
-gt
5
]
&&
echo
${
elapsed
}
s
}
# Get the initial timestamp for cmd_exec_time
#
preexec
()
{
cmd_timestamp
=
`
date
+%s
`
}
# Output additional information about paths, repos and exec time
#
precmd
()
{
vcs_info
# Get version control info before we start outputting stuff
print
-P
"
\n
$(
repo_information
)
%F{yellow}
$(
cmd_exec_time
)
%f"
}
# Define prompts
#
PROMPT
=
"%(?.%F{magenta}.%F{red})❯%f "
# Display a red prompt char on failure
RPROMPT
=
"%F{8}
${
SSH_TTY
:+%n@%m
}
%f"
# Display username if connected via SSH
# ------------------------------------------------------------------------------
#
# List of vcs_info format strings:
#
# %b => current branch
# %a => current action (rebase/merge)
# %s => current version control system
# %r => name of the root directory of the repository
# %S => current path relative to the repository root directory
# %m => in case of Git, show information about stashes
# %u => show unstaged changes in the repository
# %c => show staged changes in the repository
#
# List of prompt format strings:
#
# prompt:
# %F => color dict
# %f => reset color
# %~ => current path
# %* => time
# %n => username
# %m => shortname host
# %(?..) => prompt conditional - %(condition.true.false)
#
# ------------------------------------------------------------------------------
source ${0:h:A}/refined.zsh-theme
themes/refined.zsh-theme
0 → 100644
View file @
66bae5a5
#!/usr/bin/env zsh
# ------------------------------------------------------------------------------
#
# Pure - A minimal and beautiful theme for oh-my-zsh
#
# Based on the custom Zsh-prompt of the same name by Sindre Sorhus. A huge
# thanks goes out to him for designing the fantastic Pure prompt in the first
# place! I'd also like to thank Julien Nicoulaud for his "nicoulaj" theme from
# which I've borrowed both some ideas and some actual code. You can find out
# more about both of these fantastic two people here:
#
# Sindre Sorhus
# Github: https://github.com/sindresorhus
# Twitter: https://twitter.com/sindresorhus
#
# Julien Nicoulaud
# Github: https://github.com/nicoulaj
# Twitter: https://twitter.com/nicoulaj
#
# ------------------------------------------------------------------------------
# Set required options
#
setopt prompt_subst
# Load required modules
#
autoload
-Uz
vcs_info
# Set vcs_info parameters
#
zstyle
':vcs_info:*'
enable
hg bzr git
zstyle
':vcs_info:*:*'
unstagedstr
'!'
zstyle
':vcs_info:*:*'
stagedstr
'+'
zstyle
':vcs_info:*:*'
formats
"
$FX
[bold]%r
$FX
[no-bold]/%S"
"%s/%b"
"%%u%c"
zstyle
':vcs_info:*:*'
actionformats
"
$FX
[bold]%r
$FX
[no-bold]/%S"
"%s/%b"
"%u%c (%a)"
zstyle
':vcs_info:*:*'
nvcsformats
"%~"
""
""
# Fastest possible way to check if repo is dirty
#
git_dirty
()
{
# Check if we're in a git repo
command
git rev-parse
--is-inside-work-tree
&>/dev/null
||
return
# Check if it's dirty
command
git diff
--quiet
--ignore-submodules
HEAD &>/dev/null
;
[
$?
-eq
1
]
&&
echo
"*"
}
# Display information about the current repository
#
repo_information
()
{
echo
"%F{blue}
${
vcs_info_msg_0_
%%/.
}
%F{8}
$vcs_info_msg_1_
`
git_dirty
`
$vcs_info_msg_2_
%f"
}
# Displays the exec time of the last command if set threshold was exceeded
#
cmd_exec_time
()
{
local
stop
=
`
date
+%s
`
local
start
=
${
cmd_timestamp
:-
$stop
}
let local
elapsed
=
$stop
-
$start
[
$elapsed
-gt
5
]
&&
echo
${
elapsed
}
s
}
# Get the initial timestamp for cmd_exec_time
#
preexec
()
{
cmd_timestamp
=
`
date
+%s
`
}
# Output additional information about paths, repos and exec time
#
precmd
()
{
vcs_info
# Get version control info before we start outputting stuff
print
-P
"
\n
$(
repo_information
)
%F{yellow}
$(
cmd_exec_time
)
%f"
}
# Define prompts
#
PROMPT
=
"%(?.%F{magenta}.%F{red})❯%f "
# Display a red prompt char on failure
RPROMPT
=
"%F{8}
${
SSH_TTY
:+%n@%m
}
%f"
# Display username if connected via SSH
# ------------------------------------------------------------------------------
#
# List of vcs_info format strings:
#
# %b => current branch
# %a => current action (rebase/merge)
# %s => current version control system
# %r => name of the root directory of the repository
# %S => current path relative to the repository root directory
# %m => in case of Git, show information about stashes
# %u => show unstaged changes in the repository
# %c => show staged changes in the repository
#
# List of prompt format strings:
#
# prompt:
# %F => color dict
# %f => reset color
# %~ => current path
# %* => time
# %n => username
# %m => shortname host
# %(?..) => prompt conditional - %(condition.true.false)
#
# ------------------------------------------------------------------------------
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