Last active
January 1, 2018 02:55
-
-
Save WincerChan/40b8a2122c345466bafa2ba97bc79823 to your computer and use it in GitHub Desktop.
Modified zsh theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/home/wincer/.oh-my-zsh | |
export VISUAL=vim | |
export EDITOR="/usr/bin/vim" | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="avit" | |
# Uncomment the following line to use case-sensitive completion. | |
# CASE_SENSITIVE="true" | |
# Uncomment the following line to use hyphen-insensitive completion. Case | |
# sensitive completion must be off. _ and - will be interchangeable. | |
# HYPHEN_INSENSITIVE="true" | |
# Uncomment the following line to disable bi-weekly auto-update checks. | |
# DISABLE_AUTO_UPDATE="true" | |
# Uncomment the following line to change how often to auto-update (in days). | |
# export UPDATE_ZSH_DAYS=13 | |
# Uncomment the following line to disable colors in ls. | |
# DISABLE_LS_COLORS="true" | |
# Uncomment the following line to disable auto-setting terminal title. | |
# DISABLE_AUTO_TITLE="true" | |
# Uncomment the following line to enable command auto-correction. | |
ENABLE_CORRECTION="true" | |
# Uncomment the following line to display red dots whilst waiting for completion. | |
COMPLETION_WAITING_DOTS="true" | |
# Uncomment the following line if you want to disable marking untracked files | |
# under VCS as dirty. This makes repository status check for large repositories | |
# much, much faster. | |
# DISABLE_UNTRACKED_FILES_DIRTY="true" | |
# Uncomment the following line if you want to change the command execution time | |
# stamp shown in the history command output. | |
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" | |
HIST_STAMPS="mm/dd/yyyy" | |
# Would you like to use another custom folder than $ZSH/custom? | |
# ZSH_CUSTOM=/path/to/new-custom-folder | |
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) | |
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ | |
# Example format: plugins=(rails git textmate ruby lighthouse) | |
# Add wisely, as too many plugins slow down shell startup. | |
plugins=(git autojump catimg extract zsh-wakatime) | |
source $ZSH/oh-my-zsh.sh | |
# User configuration | |
# export MANPATH="/usr/local/man:$MANPATH" | |
# You may need to manually set your language environment | |
# export LANG=en_US.UTF-8 | |
# Preferred editor for local and remote sessions | |
# if [[ -n $SSH_CONNECTION ]]; then | |
# export EDITOR='vim' | |
# else | |
# export EDITOR='mvim' | |
# fi | |
# Compilation flags | |
# export ARCHFLAGS="-arch x86_64" | |
# ssh | |
# export SSH_KEY_PATH="~/.ssh/rsa_id" | |
# Set personal aliases, overriding those provided by oh-my-zsh libs, | |
# plugins, and themes. Aliases can be placed here, though oh-my-zsh | |
# users are encouraged to define aliases within the ZSH_CUSTOM folder. | |
# For a full list of active aliases, run `alias`. | |
# | |
# Example aliases | |
# alias zshconfig="mate ~/.zshrc" | |
# alias ohmyzsh="mate ~/.oh-my-zsh" | |
screenfetch | |
alias cls='clear' | |
alias ll='ls -l' | |
alias la='ls -a' | |
alias hes='hexo s' | |
alias heg='hexo g' | |
alias hec='hexo clean' | |
alias lh='ls -lh' | |
alias grep="grep --color=auto" | |
alias -s gz='tar -xzvf' | |
alias -s tgz='tar -xzvf' | |
alias -s zip='unzip' | |
export PATH=~/.userscript:$PATH | |
export PATH=~/.npm-global/bin:$PATH | |
export [email protected] | |
export MAIL_PASSWORD=v=\$5MH5@xF*^ | |
export [email protected] | |
export DATABASE_URL=postgres://mraqbeaaytwdjx:d46c6386b79c94d9db7cefeaf10b13f498228b8144231638b607f4e6395f8bac@ec2-54-243-255-57.compute-1.amazonaws.com:5432/d7rjaol9ppabfa | |
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh | |
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change. | |
export PATH="$PATH:$HOME/.rvm/bin" | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AVIT ZSH Theme | |
# Colors: black, red, green, yellow, *blue, magenta, cyan, and white. | |
PROMPT='$(_user_host) ${_current_dir} $(git_prompt_info) $(_ruby_version) | |
%{$fg[$CARETCOLOR]%}▶ %{$resetcolor%}' | |
PROMPT2='%{$fg[$CARETCOLOR]%}◀%{$reset_color%} ' | |
RPROMPT='$(_vi_status)%{$(echotc UP 1)%}$(_git_time_since_commit) $(git_prompt_status) ${_return_status} $(_current_time)%{$(echotc DO 1)%}' | |
local _current_dir="%{$fg[white]%}in %{$fg_bold[yellow]%}%3~%{$reset_color%} " | |
local _return_status="%{$fg_bold[red]%}%(?..⍉)%{$reset_color%}" | |
local _hist_no="%{$fg[grey]%}%h%{$reset_color%}" | |
function _current_dir() { | |
local _max_pwd_length="65" | |
if [[ $(echo -n $PWD | wc -c) -gt ${_max_pwd_length} ]]; then | |
echo "%{$fg_bold[blue]%}%-2~ ... %3~%{$reset_color%}" | |
else | |
echo "%{$fg_bold[blue]%}%~%{$reset_color%}" | |
fi | |
} | |
function _current_time() { | |
echo "%{$fg[white]%}[%*] " | |
} | |
#function _user_host() { | |
# if [[ -n $SSH_CONNECTION ]]; then | |
# me="%n@%m" | |
# elif [[ $LOGNAME != $USER ]]; then | |
# me="%n" | |
# fi | |
# if [[ -n $me ]]; then | |
# echo "%{$fg[cyan]%}$me%{$reset_color%}:" | |
# fi | |
#} | |
function _user_host() { | |
echo "%{$terminfo[bold]$fg[blue]%}ϟ%{$reset_color%} \c" | |
echo "%(#,%{$bg[yellow]%}%{$fg[black]%}%n%{$reset_color%},%{$fg[cyan]%}%n)\c" | |
echo "%{$fg[white]%}@\c" | |
echo "%{$fg[magenta]%}%m" | |
} | |
function _vi_status() { | |
if {echo $fpath | grep -q "plugins/vi-mode"}; then | |
echo "$(vi_mode_prompt_info)" | |
fi | |
} | |
function _ruby_version() { | |
if {echo $fpath | grep -q "plugins/rvm"}; then | |
echo "%{$fg[grey]%}$(rvm_prompt_info)%{$reset_color%}" | |
elif {echo $fpath | grep -q "plugins/rbenv"}; then | |
echo "%{$fg[grey]%}$(rbenv_prompt_info)%{$reset_color%}" | |
fi | |
} | |
# Determine the time since last commit. If branch is clean, | |
# use a neutral color, otherwise colors will vary according to time. | |
function _git_time_since_commit() { | |
# Only proceed if there is actually a commit. | |
if git log -1 > /dev/null 2>&1; then | |
# Get the last commit. | |
last_commit=$(git log --pretty=format:'%at' -1 2> /dev/null) | |
now=$(date +%s) | |
seconds_since_last_commit=$((now-last_commit)) | |
# Totals | |
minutes=$((seconds_since_last_commit / 60)) | |
hours=$((seconds_since_last_commit/3600)) | |
# Sub-hours and sub-minutes | |
days=$((seconds_since_last_commit / 86400)) | |
sub_hours=$((hours % 24)) | |
sub_minutes=$((minutes % 60)) | |
if [ $hours -gt 24 ]; then | |
commit_age="${days}d" | |
elif [ $minutes -gt 60 ]; then | |
commit_age="${sub_hours}h${sub_minutes}m" | |
else | |
commit_age="${minutes}m" | |
fi | |
color=$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL | |
echo "$color$commit_age%{$reset_color%}" | |
fi | |
} | |
if [[ $USER == "root" ]]; then | |
CARETCOLOR="red" | |
else | |
CARETCOLOR="white" | |
fi | |
MODE_INDICATOR="%{$fg_bold[yellow]%}❮%{$reset_color%}%{$fg[yellow]%}❮❮%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%}✚ " | |
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%}⚑ " | |
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%}✖ " | |
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%}▴ " | |
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[cyan]%}§ " | |
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[white]%}◒ " | |
# Colors vary depending on time lapsed. | |
ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT="%{$fg[green]%}" | |
ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM="%{$fg[yellow]%}" | |
ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG="%{$fg[red]%}" | |
ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL="%{$fg[white]%}" | |
# show time | |
ZSH_THEME_CURRENT_DATE="%{$fg[white]%}[%*]" | |
# LS colors, made with http://geoff.greer.fm/lscolors/ | |
export LSCOLORS="exfxcxdxbxegedabagacad" | |
export LS_COLORS='di=34;40:ln=35;40:so=32;40:pi=33;40:ex=31;40:bd=34;46:cd=34;43:su=0;41:sg=0;46:tw=0;42:ow=0;43:' | |
export GREP_COLOR='1;33' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment