Skip to content

Commit

Permalink
added .zshrc
Browse files Browse the repository at this point in the history
  • Loading branch information
kn1cht committed Jun 20, 2016
1 parent 7888d12 commit 689b3a3
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .zshrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
bindkey -v
# End of lines configured by zsh-newuser-install

# プロンプト
# 1行表示
PROMPT="%F{cyan}%m:%~ %n$ %f"

#for zsh-completions
fpath=(/usr/local/share/zsh-completions $fpath)
autoload -Uz compinit
compinit -u
autoload -Uz colors
colors
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'

setopt print_eight_bit
setopt ignore_eof
setopt interactive_comments
setopt auto_cd
setopt pushd_ignore_dups
setopt share_history
setopt hist_ignore_all_dups
setopt hist_reduce_blanks
setopt extended_glob

alias vv="g++ --std=c++11 -O2 -Wall"
alias ls='ls -G'
alias mkdir='mkdir -p'
alias sudo='sudo '
# C で標準出力をクリップボードにコピーする
# mollifier delta blog : http://mollifier.hatenablog.com/entry/20100317/p1
alias -g C='| pbcopy'

export PATH="$PATH:"/Applications/microchip/xc8/v1.35/bin""
export PATH=$PATH:/usr/local/share/git-core/contrib/diff-highlight

0 comments on commit 689b3a3

Please sign in to comment.