-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
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
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 |