summaryrefslogtreecommitdiff
path: root/themes
AgeCommit message (Collapse)Author
2016-02-12Remove non-working symbols and tidy up logicMarc Cornellà
2016-02-12Sets spacing to 1 when git is absent for consistencyNick Russo
2016-01-13Updated colour of ◀ in PROMPT2 of the avit theme.L.C. Karssen
In commit 729fd53 I incorrectly only changed PROMPT1. Now both ▶ and ◀ follow $CARETCOLOR.
2016-01-13oh-my-zsh avit theme: instead of only showing the last 3 directories in the ↵L.C. Karssen
$PWD shorten the path by removing some middle parts if $PWD becomes too long.
2016-01-13Shorter way of creating bold colours in a ZSH theme (applied to the avit theme).L.C. Karssen
2016-01-13Adapt some colours in the avit theme for better visibility in the default ↵L.C. Karssen
Ubuntu terminal theme.
2016-01-13Fix in avit theme: $CARETCOLOR was not to actually colour the caret, so ↵L.C. Karssen
change to root user wouldn't show in the prompt.
2016-01-13Set colour for user@hostname to red if we're root (or sudo) in the bira theme.L.C. Karssen
2015-12-15Merge pull request #4536 from alexws54tk/patch-1Marc Cornellà
Update frontcube.zsh-theme
2015-12-14Move current_branch() from git plugin to core lib/git.zshAndrew Janke
Fixes #4085: core -> plugin dependency issue. Rename it to git_current_branch for clarity that it's git-specific. Update all plugins that were calling it to use new name. Fix variable leaks by making more variables in lib/git.zsh local. Have lib/git.zsh use [[ ]] instead of [ ] everywhere.
2015-12-15Merge pull request #4589 from apjanke/agnoster-powerline-char-stronger-warningMarc Cornellà
agnoster theme: stronger warning about changing SEGMENT_SEPARATOR character
2015-12-14"fishy" theme: Fix "~" use in promptDanyil Bohdan
Actually replace the value of the environment variable $HOME with "~" instead of appending the tilde in front of the prompt.
2015-12-04"fishy" theme: Shorten path .foo to .f, not .Danyil Bohdan
When the current path is /home/user/.config/doublecmd the prompt now reads "/h/u/.c/doublecmd", not "/h/u/./doublecmd" as was the case. This matches what the Fish shell does. Enclose the Perl snippet in single quotes instead of double quotes.
2015-11-07I noticed that for certain projects with unstaged changed I would get a 'U' ↵Justin LeFebvre
character instead of the '●' character. This should fix that.
2015-11-06agnoster: stronger warning about changing SEGMENT_SEPARATOR characterAndrew Janke
2015-11-02Avoid using "PREFIX" that cause nvm to complain about.aioute Gao
2015-10-22Update frontcube.zsh-themeAlexander Golikov
Fix «rvm» variable usage in RPROMPT out
2015-09-27Fix print rvm version in amuse themejustvitalius
2015-09-26Merge pull request #4340 from pahnev/masterRobby Russell
Fixed broken git branch icon
2015-09-20Fix issues with character widths in emotty themeAlexis Hildebrandt
2015-09-19Merge pull request #4316 from bronzdoc/feature/rvm_amuse_themeRobby Russell
Display rvm ruby version
2015-09-19Merge pull request #4371 from afh/pull/emotty_themeRobby Russell
Add emotty theme
2015-09-19Merge pull request #4091 from apjanke/agnoster-clarify-powerlineRobby Russell
agnoster: Use current Powerline chars everywhere, and clarify behavior
2015-09-19Merge pull request #4189 from bmdhacks/masterRobby Russell
agnoster: speed up git prompt
2015-09-19Merge pull request #4252 from Fice-T/masterRobby Russell
Fix graphical bug in cypher theme when return status is non-zero
2015-09-19Merge pull request #4173 from sharkySharks/masterRobby Russell
Devanagari Om fixed in dogenpunk theme
2015-09-19Merge pull request #4155 from honnix/fix_colorRobby Russell
[theme] Fix color problem of steeef theme
2015-09-19Merge pull request #4113 from apjanke/gnzh-remove-evalRobby Russell
gnzh theme: fix "eval" and related scope problems.
2015-09-19Merge pull request #4050 from mbologna/michelebologna_fix_git_promptRobby Russell
Change to use omz git_prompt* functions
2015-09-19Add emotty themeAlexis Hildebrandt
2015-09-11Fixed broken git branch iconKirill Pahnev
2015-09-04gnzh theme: fix "eval" and related problems.Andrew Janke
Switch to normal zsh %F/%f prompt escapes to avoid "eval" and extra variables. Wrap whole thing in anonymous function so the existing `local` statements actually work. Then switch '...' to eager "..." so stuff actually works with local variables. And local-ize the remaining variables that are used only in prompt construction.
2015-09-02Display rvm-prompt output.bronzdoc
2015-08-16Fix graphical bug in cypher theme when return status is non-zeroFice-T
- When the previous command's return status is non-zero and the prompt is redrawn, graphical errors sometimes arise due to the fg{red} not being escaped.
2015-07-27agnoster: speed up git promptBrian Degenhardt
Problem On detached-refs, the git prompt is very slow because it uses a command to output all refs, which takes 32s on the twitter internal git repo. Solution Use git-rev-parse instead of git-show-ref to only output the head ref. Runtime drops to 0.03 seconds. Note Interestingly, git-rev-parse isn't slow without the --head arguement so I'll probably be cooking up a patch for the git team to speed this up eventually, but it's still pointless to sigpipe git as it walks the filesystem.
2015-07-19replaced Om spelling so letters would not overlapSharky
2015-07-19removed incorrect Devanagari conjunct symbol at end of OmSharky
2015-07-19Fix little typo that makes the statement useless.Alex Talker
2015-07-13[theme] Fix color problem of steeef themeHongxin Liang
steeef theme sets colors depending on $TERM, however if %F is used, it must be closed by %f instead of %{$reset_color%}. Further on, all %f directives have been replaced by %F and color support of current TERM is checked more properly.
2015-07-03agnoster: Protect Unicode esape sequences with local LC_* settingsAndrew Janke
2015-06-25agnoster: Define Powerline chars with escape sequence, and use same character onAndrew Janke
all platforms. Add clarifying comments. This makes everything consistent with the current Powerline-patched fonts definitions.
2015-06-16Change to use omz git_prompt* functionsMichele Bologna
Removed references for official git __git_ps1() functions. Change to use omz function git_prompt* functions like: - git_prompt_info() -> branch name - git_prompt_status() -> check if untracked, modified, added, stashed file are in the current git repo - git_remote_status() -> check if current repo is ahead, behind, or diverged. These functions returns string automatically added to your PS1; these are customizable via exporting ZSH_THEME_GIT_PROMPT*
2015-06-14Merge pull request #3821 from tresni/fix_minimalRobby Russell
Fix minimal.zsh-theme's check for in_svn and add support for mercurial
2015-06-14Merge pull request #4001 from ivanfoo/fixOddCharsOnMacRobby Russell
Fixed odd chars on mac for agnoster theme
2015-06-15Fixed odd chars on mac for agnoster themeivanfoo
2015-06-11* Added header with help and informationMichele Bologna
* Moved git information to left prompt, with support for: * +ZSH_THEME_GIT_PROMPT_UNTRACKED, MODIFIED, STASHED, ADDED, UPSTREAM STATUS (if applicable) * Removed right prompt * Refactored following Google's guidelines for scripts [ http://goo.gl/oJSXH2 ] * Using local variables where applicable
2015-06-10Added a possibility to display the remote branch and the number of commits ↵leif.hanack
you are ahead or behind
2015-06-10Improved the `_git_time_since_commit` function.Samuel Parkinson
Check for at least one commit using a `git log` limit of one. Improves the performance inside git repos with a large history.
2015-06-10Fix typo in $VCS_CLEAN_COLOR in adben themeAndrew Janke
2015-06-10Grep bug in AgnosterMark Mendoza