-
Notifications
You must be signed in to change notification settings - Fork 0
/
dot_zshrc
103 lines (76 loc) · 2.46 KB
/
dot_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
98
99
100
101
102
103
# Set up fzf key bindings and fuzzy completion
source <(fzf --zsh)
# Set up zplug
[ -f ~/.zplug.sh ] && source ~/.zplug.sh
# alias
alias yarn='corepack yarn'
alias yarnpkg='corepack yarnpkg'
alias pnpm='corepack pnpm'
alias pnpx='corepack pnpx'
alias gs="git branch | fzf | xargs git switch"
export PATH="/Users/gotoharuka/.deno/bin:$PATH"
export PATH="$(python3 -m site --user-base)/bin:$PATH"
# 新しくコマンドをインストールしたときに自動的に認識させる
zstyle ":completion:*:commands" rehash 1
# Zsh補完を有効化
autoload -U compinit
compinit
# Bash互換補完を有効化
autoload -U +X bashcompinit && bashcompinit
# Terraform補完
complete -o nospace -C /opt/homebrew/bin/terraform terraform
# AWS補完
complete -C '/opt/homebrew/bin/aws_completer' aws
# 色を使用
autoload -Uz colors
colors
# ------------------------------
# zsh settings start
# ------------------------------
# Ctrl+sのロック, Ctrl+qのロック解除を無効にする
setopt no_flow_control
# 他のターミナルとヒストリーを共有
setopt share_history
# cdコマンドを省略して、ディレクトリ名のみの入力で移動
setopt auto_cd
# 自動でpushdを実行
# pushdはディレクトリを記憶してくれるやつ
# これオンにしといてcdrで移動できるようにしておけばディレクトリ移動が楽になる
setopt auto_pushd
# pushdから重複を削除
setopt pushd_ignore_dups
# cdrコマンドを有効 ログアウトしても有効なディレクトリ履歴
# cdr タブでリストを表示
autoload -Uz add-zsh-hook
autoload -Uz chpwd_recent_dirs cdr
add-zsh-hook chpwd chpwd_recent_dirs
# ヒストリーに重複を表示しない
setopt histignorealldups
# ヒストリーの保存量設定
HISTFILE=~/.zsh_history
HISTSIZE=10000
SAVEHIST=10000
# ------------------------------
# zsh settings end
# ------------------------------
# fzfを使ったコマンド履歴検索
bindkey "^r" fzf-history-widget
# goのpath通す
export PATH=$PATH:/usr/local/go/bin
# pnpm
export PNPM_HOME="/Users/gotoharuka/Library/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end
# config asdf
[ -f "$(brew --prefix asdf)/libexec/asdf.sh" ] &&
. "$(brew --prefix asdf)/libexec/asdf.sh"
# bun completions
[ -s "/Users/gotoharuka/.bun/_bun" ] && source "/Users/gotoharuka/.bun/_bun"
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
# GPG
export GPG_TTY=$(tty)