Created
January 23, 2011 11:04
-
-
Save pce/791990 to your computer and use it in GitHub Desktop.
cat ~/.zshrc
This file contains 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
# PROMPT="%{$fg[red]%}%n%{$reset_color%}@%{$fg[blue]%}%m%{$fg[yellow]%}%~%{$reset_color%}%%" | |
local blue_op="%{$fg[blue]%}[%{$reset_color%}" | |
local blue_cp="%{$fg[blue]%}]%{$reset_color%}" | |
local path_p="${blue_op}%~${blue_cp}" | |
local user_host="${blue_op}%n@%m${blue_cp}" | |
local ret_status="${blue_op}%?${blue_cp}" | |
local hist_no="${blue_op}%h${blue_cp}" | |
local smiley="%(?,%{$fg[green]%}:%)%{$reset_color%},%{$fg[red]%}:(%{$reset_color%})" | |
PROMPT="╭─${path_p}─${user_host} | |
╰─${blue_op}${smiley}${blue_cp} %# " | |
local cur_cmd="${blue_op}%_${blue_cp}" | |
PROMPT2="${cur_cmd}> " | |
# Lines configured by zsh-newuser-install | |
HISTFILE=~/.histfile | |
HISTSIZE=1000 | |
SAVEHIST=1000 | |
unsetopt beep | |
bindkey -e | |
# End of lines configured by zsh-newuser-install | |
# The following lines were added by compinstall | |
zstyle :compinstall filename '/home/pce/.zshrc' | |
autoload -Uz compinit | |
compinit | |
# End of lines added by compinstall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment