Skip to content

Instantly share code, notes, and snippets.

@hiroaki-yamamoto
Created July 22, 2014 09:08
Show Gist options
  • Save hiroaki-yamamoto/8a26942af0181eba4cbf to your computer and use it in GitHub Desktop.
Save hiroaki-yamamoto/8a26942af0181eba4cbf to your computer and use it in GitHub Desktop.
Z shell config files that I'm usually using
HISTFILE=~/.history
HISTSIZE=10
SAVEHIST=10
#Video Accel
export EDITOR="vim"
export LIBVA_DRIVER_NAME=vdpau
export VDPAU_DRIVER=radeonsi
export PINENTRY="/usr/bin/pinentry-qt4"
export PATH="${PATH}:${HOME}/bin:${HOME}/.gem/ruby/2.1.0/bin"
export FPATH="${FPATH}:${HOME}/zsh_completion"
export KWIN_DIRECT_GL=1
export QT_GRAPHICSSYSTEM='raster'
export CHROME_BIN="/usr/bin/chromium"
#Load auto completion module, colors, and history functions.
autoload -U compinit promptinit colors smart-insert-last-word
compinit
promptinit
colors
zstyle ':completion:*:default' menu select=1 ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z} r:|[-_.]=**'
#Prompt
PROMPT="[%{$fg[green]%B%}%n%{%b$reset_color%}@%{$fg[magenta]%B%}%M%{%b$reset_color%} (%{$fg[yellow]%B%}%l%{%b$reset_color%}) %{$fg[cyan]%B%}%~%{%b$reset_color%}]"
case $(id -u) in
0)
PROMPT="${PROMPT}# "
;;
*)
PROMPT="${PROMPT}$ "
;;
esac
export PROMPT
#Set autocd (is known as bash) and autopushd.
setopt autocd autopushd
#Set displaying shrinked completion
setopt list_packed extended_glob
#Set waiting 10 sec. when rm *
#setopt rmstar_wait
#Set going home when pushd without arguments.
setopt pushd_to_home
#Set ignoring history duplication.
setopt hist_ignore_dups hist_ignore_all_dups
#Ignore space in the history file.
setopt hist_ignore_space
#Increase history,
setopt inc_append_history
#Ignore pushd duplication.
setopt pushd_ignore_dups
#Completion alias
setopt completealiases
#Prompt spell fix,
setopt prompt_subst always_last_prompt
xhost +local:root>/dev/null 2>&1
alias ls="ls --color=auto"
bindkey "^[[A" history-search-backward
bindkey "^[[B" history-search-forward
bindkey "\e[1~" beginning-of-line # Home
bindkey "\e[4~" end-of-line # End
bindkey "\e[5~" beginning-of-history # PageUp
bindkey "\e[6~" end-of-history # PageDown
bindkey "\e[2~" quoted-insert # Ins
bindkey "\e[3~" delete-char # Del
bindkey "\e[5C" forward-word
bindkey "\eOc" emacs-forward-word
bindkey "\e[5D" backward-word
bindkey "\eOd" emacs-backward-word
bindkey "\e\e[C" forward-word
bindkey "\e\e[D" backward-word
bindkey "\e[Z" reverse-menu-complete # Shift+Tab
# for rxvt
bindkey "\e[7~" beginning-of-line # Home
bindkey "\e[8~" end-of-line # End
# for non RH/Debian xterm, can't hurt for RH/Debian xterm
bindkey "\eOH" beginning-of-line
bindkey "\eOF" end-of-line
# for freebsd console
bindkey "\e[H" beginning-of-line
bindkey "\e[F" end-of-line
# for guake
bindkey "\eOF" end-of-line
bindkey "\eOH" beginning-of-line
bindkey "^[[1;5D" backward-word
bindkey "^[[1;5C" forward-word
bindkey "\e[3~" delete-char # Del
bindkey "^W" insert-last-word
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment