Created
September 24, 2014 10:05
-
-
Save mimura1133/a965062758d8da357a77 to your computer and use it in GitHub Desktop.
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
# License : MIT | |
# http://mollifier.mit-license.org/ | |
######################################## | |
# If not running interactively, don't do anything. | |
[ -z "$PS1" ] && return | |
# 環境変数 | |
export LANG=ja_JP.UTF-8 | |
# 色を使用出来るようにする | |
autoload -Uz colors | |
colors | |
# emacs 風キーバインドにする | |
bindkey -e | |
# ヒストリの設定 | |
HISTFILE=~/.zsh_history | |
HISTSIZE=1000000 | |
SAVEHIST=1000000 | |
# プロンプト | |
PROMPT='[%F{magenta}%n%f@%F{green}%U%m%u%f:%F{blue}%B%d%f%b]# ' | |
RPROMPT='[%*]' | |
# 単語の区切り文字を指定する | |
autoload -Uz select-word-style | |
select-word-style default | |
# ここで指定した文字は単語区切りとみなされる | |
# / も区切りと扱うので、^W でディレクトリ1つ分を削除できる | |
zstyle ':zle:*' word-chars " /=;@:{},|" | |
zstyle ':zle:*' word-style unspecified | |
######################################## | |
# 補完 | |
# 補完機能を有効にする | |
autoload -Uz compinit | |
compinit | |
# 補完で小文字でも大文字にマッチさせる | |
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' | |
# ../ の後は今いるディレクトリを補完しない | |
zstyle ':completion:*' ignore-parents parent pwd .. | |
# sudo の後ろでコマンド名を補完する | |
zstyle ':completion:*:sudo:*' command-path /usr/local/sbin /usr/local/bin \ | |
/usr/sbin /usr/bin /sbin /bin /usr/X11R6/bin | |
# ps コマンドのプロセス名補完 | |
zstyle ':completion:*:processes' command 'ps x -o pid,s,args' | |
setopt auto_list | |
setopt auto_menu | |
setopt list_types | |
bindkey "^[[Z" reverse-menu-complete | |
######################################## | |
# vcs_info | |
autoload -Uz vcs_info | |
autoload -Uz add-zsh-hook | |
zstyle ':vcs_info:*' formats '%F{green}(%s)-[%b]%f' | |
zstyle ':vcs_info:*' actionformats '%F{red}(%s)-[%b|%a]%f' | |
######################################## | |
# オプション | |
# 日本語ファイル名を表示可能にする | |
setopt print_eight_bit | |
# beep を無効にする | |
setopt no_beep | |
# フローコントロールを無効にする | |
setopt no_flow_control | |
# '#' 以降をコメントとして扱う | |
setopt interactive_comments | |
# ディレクトリ名だけでcdする | |
setopt auto_cd | |
alias ..='cd ..' | |
# cd したら自動的にpushdする | |
setopt auto_pushd | |
# 重複したディレクトリを追加しない | |
setopt pushd_ignore_dups | |
# 同時に起動したzshの間でヒストリを共有する | |
setopt share_history | |
# 同じコマンドをヒストリに残さない | |
setopt hist_ignore_all_dups | |
# スペースから始まるコマンド行はヒストリに残さない | |
setopt hist_ignore_space | |
# ヒストリに保存するときに余分なスペースを削除する | |
setopt hist_reduce_blanks | |
# 高機能なワイルドカード展開を使用する | |
setopt extended_glob | |
unset caseglob | |
######################################## | |
# キーバインド | |
# ^R で履歴検索をするときに * でワイルドカードを使用出来るようにする | |
bindkey '^R' history-incremental-pattern-search-backward | |
######################################## | |
# エイリアス | |
alias la='ls -a' | |
alias ll='ls -l' | |
alias rm='rm -i' | |
alias cp='cp -i' | |
alias mv='mv -i' | |
alias mkdir='mkdir -p' | |
# sudo の後のコマンドでエイリアスを有効にする | |
alias sudo='sudo ' | |
# グローバルエイリアス | |
alias -g L='| less' | |
alias -g G='| grep' | |
alias ls='ls -F --color=auto' | |
ZSH_THEME="wedisagree" | |
function cd() | |
{ | |
builtin cd $@ && ls; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment