-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
executable file
·97 lines (79 loc) · 3.14 KB
/
.zshrc
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
source $HOME/.zsh.d/utils.zsh
## zsh load
if is_macos; then
source /opt/homebrew/share/zsh/site-functions/
elif is_linux; then
source /usr/share/zsh/site-functions
elif is_win; then
source /usr/share/zsh/site-functions
fi
bindkey -v
stty stop undef
if is_macos; then
zstyle ':completion:*:*:git:*' script /opt/homebrew/share/zsh/site-functions/git-completion.bash
zstyle ':completion:*:*:tig:*' script /opt/homebrew/share/zsh/site-functions/tig-completion.bash
elif is_linux; then
zstyle ':completion:*:*:git:*' script ~/local/lib/completion/git-completion.bash
zstyle ':completion:*:*:tig:*' script /usr/share/bash-completion/completions/tig
elif is_win; then
zstyle ':completion:*:*:git:*' script ~/local/lib/completion/git-completion.bash
zstyle ':completion:*:*:tig:*' script /usr/share/bash-completion/completions/tig
fi
fpath=(~/local/lib/completion $fpath)
autoload -Uz compinit && compinit
### pure zsh config
### メモリ上のヒストリ数。
## 大きな数を指定してすべてのヒストリを保存するようにしている。
HISTSIZE=10000000
## 保存するヒストリ数
SAVEHIST=$HISTSIZE
## ヒストリファイルにコマンドラインだけではなく実行時刻と実行時間も保存する。
setopt extended_history
## 同じコマンドラインを連続で実行した場合はヒストリに登録しない。
setopt hist_ignore_dups
## スペースで始まるコマンドラインはヒストリに追加しない。
setopt hist_ignore_space
## すぐにヒストリファイルに追記する。
setopt inc_append_history
## zshプロセス間でヒストリを共有する。
setopt share_history
## C-sでのヒストリ検索が潰されてしまうため、出力停止・開始用にC-s/C-qを使わない。
setopt no_flow_control
export PAGER='less'
export EDITOR='nvim'
export LANG='ja_JP.UTF-8'
export HISTFILE=$HOME/.zsh_history
export GOPATH=$HOME/go
export GOBIN=$GOPATH/bin
export PATH=$GOBIN:$PATH
export YABAI_CERT=yabai-cert
export LANG="ja_JP.UTF-8"
if is_macos; then
export TERMINAL=kitty
echo 'Darwin'
export PATH=/opt/homebrew/opt/bin:$HOME/.nodenv/bin:$HOME/.rbenv/bin:$HOME/local/bin:/usr/local/share/aclocal:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$PATH
elif is_linux; then
export TERMINAL=alacritty
echo 'Linux'
export PATH=$HOME/.nodenv/bin:$HOME/.rbenv/bin:$HOME/local/bin:/usr/local/share/aclocal:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$PATH
elif is_win; then
echo 'WSL'
export PATH=$HOME/.nodenv/bin:$HOME/.rbenv/bin:$HOME/local/bin:/usr/local/share/aclocal:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$PATH
fi
eval "$(rbenv init - zsh)"
eval "$(nodenv init -)"
eval "$(direnv hook zsh)"
eval "$(starship init zsh)"
source $HOME/.zsh.d/aliases.zsh
source $HOME/.zsh.d/zinit.zsh
set bell-style none
neofetch
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# Load a few important annexes, without Turbo
# (this is currently required for annexes)
zinit light-mode for \
zdharma-continuum/zinit-annex-as-monitor \
zdharma-continuum/zinit-annex-bin-gem-node \
zdharma-continuum/zinit-annex-patch-dl \
zdharma-continuum/zinit-annex-rust
### End of Zinit's installer chunk