Last active
October 1, 2015 18:04
-
-
Save pkieltyka/92e0df6bb32b84d6c124 to your computer and use it in GitHub Desktop.
/etc/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
# Correctly display UTF-8 with combining characters. | |
if [ "$TERM_PROGRAM" = "Apple_Terminal" ]; then | |
setopt combiningchars | |
fi | |
# pk | |
HISTFILE=~/.histfile | |
HISTSIZE=1000 | |
SAVEHIST=1000 | |
export EDITOR=vim | |
bindkey -e | |
export LSCOLORS="gxfxcxdxbxegedabagacad" | |
alias ls='ls -FG' | |
setopt appendhistory extendedglob nomatch | |
unsetopt autocd beep notify | |
# Automatically define supported terminal colors. | |
define_colors() { | |
autoload colors zsh/terminfo | |
if [[ "$terminfo[colors]" -ge 8 ]] | |
then | |
colors | |
fi | |
for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do | |
eval BOLD_$color='%{$terminfo[bold]$fg[${(L)color}]%}' | |
eval $color='%{$fg[${(L)color}]%}' | |
(( count = $count + 1 )) | |
done | |
NO_COLOR="%{$terminfo[sgr0]%}" | |
} | |
define_colors | |
unset define_colors | |
PROMPT="[$(print "$GREEN")%n$(print "$BOLD_RED")@$(print "$NO_COLOR")$(print "$GREEN")%m $(print "$CYAN")%~$(print "$NO_COLOR")]$(print "$BOLD_WHITE")%(!.#.$)$(print "$NO_COLOR") " | |
autoload -Uz compinit | |
compinit | |
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} | |
zstyle ':completion:*' list-prompt '%SAt %p: Hit TAB for more, or the character to insert%s' | |
#zstyle ':completion:*' menu select=5 _complete _ignored _approximate | |
#zstyle -e ':completion:*:approximate:*' max-errors 'reply=( $(( ($#PREFIX+$#SUFFIX)/2 )) numeric )' | |
zstyle ':completion:*' select-prompt '%SScrolling active: current selection at %p%s' | |
zstyle ':completion:*::::' completer _expand _complete _ignored | |
zstyle ':completion:*:*:kill:*' menu yes select | |
zstyle ':completion:*:kill:*' force-list always | |
#zstyle ':completion:*:*:*:*:processes' menu yes select | |
#zstyle ':completion:*:*:*:*:processes' force-list always | |
# match uppercase from lowercase | |
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' | |
# Set title bar | |
precmd () { print -Pn "\e]2;%n@%M | %~\a" } | |
#/usr/games/fortune |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment