-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathyoshiori.zshrc.zsh
65 lines (44 loc) · 1.65 KB
/
yoshiori.zshrc.zsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
######## 履歴関係設定 start ########
##
# 履歴の設定, screen でも共有
HISTFILE=$ZSH/log/.zhistory
# メモリ内の履歴の数
HISTSIZE=100000
# 保存される履歴の数
SAVEHIST=100000
# 既にヒストリにあるコマンドは古い方を削除
setopt hist_ignore_all_dups
#複数の文字の組み合わせをサポートするバイトモード
setopt COMBINING_CHARS
# コマンドラインの余分なスペースを削除
setopt hist_reduce_blanks
#ヒストリの共有 for GNU Screen
setopt share_history
# 複数の zsh を同時に使う時など history ファイルに上書きせず追加する
setopt append_history
# 直前と同じコマンドラインはヒストリに追加しない
setopt hist_ignore_dups
# コマンドラインの先頭がスペースで始まる場合ヒストリに追加しない
setopt hist_ignore_space
# ヒストリを呼び出してから実行する間に一旦編集できる状態になる
setopt hist_verify
# history (fc -l) コマンドをヒストリリストから取り除く。
setopt hist_no_store
# emacs keybind
bindkey -e
# 先頭マッチのヒストリサーチ
bindkey '^P' history-beginning-search-backward
bindkey '^R' history-incremental-pattern-search-backward
# 先頭マッチのヒストリサーチ
bindkey '^N' history-beginning-search-forward
bindkey '^S' history-incremental-pattern-search-forward
##
######## 履歴関係設定 end ########
######## 補完関係設定 start ########
##
# 補完候補リストの日本語を適正表示
setopt print_eight_bit
##
######## 補完関係設定 end ########
# cdの後に自動的にls -la
function chpwd() { ls -la }