-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc
149 lines (115 loc) · 2.67 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
alias o="open"
alias z="zoxide"
alias b='[[ $(git rev-parse --is-inside-work-tree) ]] && open "${"$(git remote get-url origin)"%.git}"'
alias c="code"
alias d="docker compose up"
alias g="git"
alias l="eza --long --all"
alias n="npm"
alias pn="pnpm"
alias pnf="pnpm -F"
alias y="yarn"
npm-diff() {
npm diff --diff="$1@$2" --diff="$1@$3"
}
alias gam="$HOME/bin/gam/gam"
setopt HIST_IGNORE_SPACE
setopt HIST_REDUCE_BLANKS
setopt MAGIC_EQUAL_SUBST
setopt NO_FLOW_CONTROL
bindkey "^U" backward-kill-line
bindkey "^^" redo
export EDITOR="vim"
export HISTFILE="$HOME/dotfiles/zsh_history"
export LANG="ja_JP.UTF-8"
export LESSHISTFILE="-"
export PS1=$'\n%B%F{magenta}%*%f %F{cyan}%c%f %F{magenta}%%%f %b'
export SAVEHIST=0
export WORDCHARS="${WORDCHARS//[-\/]/}"
export BAT_THEME="ansi"
export FZF_DEFAULT_COMMAND="fd --hidden --follow --exclude=.git --type=file --color=always"
export FZF_DEFAULT_OPTS="--ansi"
export NODE_REPL_HISTORY=""
export PNPM_HOME="$HOME/.local/share/pnpm"
export path=(
"$PNPM_HOME"
"$HOME/.local/bin"
"/Applications/Sublime Text.app/Contents/SharedSupport/bin"
$path
)
manzsh() {
man zshbuiltins | less -p "^ $1"
}
touchp() {
declare arg
for arg in "$@"; do
mkdir -p "$(dirname "$arg")" && touch "$arg"
done
}
cdf() {
declare selected
if ! selected="$(fzf)"; then
return
fi
readonly selected
cd "$selected" || return
}
cdg() {
declare selected
if [[ $1 ]]; then
if ! selected="$(ghq list | fzf --query $1)"; then
return
fi
else
if ! selected="$(ghq list | fzf)"; then
return
fi
fi
readonly selected
cd "$(ghq root)/$selected" || return
}
xargsg() {
declare -a ghq_list_args
declare -i i=0
if [[ ! $* ]]; then
echo "fatal: The command to be executed must be specified."
return 1
fi
read -r -A ghq_list_args <<<"$GHQ_LIST_ARGS"
readonly ghq_list_args
for repository in $(ghq list "${ghq_list_args[@]}"); do
(
cd "$(ghq root)/$repository" || return
[[ i -gt 0 ]] && printf "\n"
printf "\e[34m%s\n" "$repository"
printf "─%.s" $(seq 1 "$COLUMNS")
printf "\e[m\n"
eval "$*"
)
i=$((i + 1))
done
}
gh_copilot_suggest_git() {
gh copilot suggest --target git -- "$@"
}
alias "git?"="gh_copilot_suggest_git"
gh_copilot_suggest_gh() {
gh copilot suggest --target gh -- "$@"
}
alias "gh?"="gh_copilot_suggest_gh"
gh_copilot_suggest_shell() {
gh copilot suggest --target shell -- "$@"
}
alias "??"="gh_copilot_suggest_shell"
gh_copilot_explain() {
gh copilot explain -- "$@"
}
alias "?"="gh_copilot_explain"
source "$XDG_CONFIG_HOME/op/plugins.sh"
# pnpm
export PNPM_HOME="/Users/takuya.fukuju/.local/share/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end