-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bashrc
306 lines (249 loc) · 8.93 KB
/
.bashrc
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
echo 'include .bashrc'
if [ `which nvim` ]; then
alias vi="nvim"
alias vim="nvim"
fi
#####################################################################################################
# bash共通設定
#####################################################################################################
# ctrl+fで次の単語に移動
bind '"\C-f": forward-word'
# ctrl+bで前の単語に移動
bind '"\C-b": backward-word'
# 色の変更
export LSCOLORS=gxfxcxdxbxegedabagacad
## githubのほうで上書きしてる
## ターミナルのカスタマイズ
## \h ホスト名(最初の.まで)
## \H ホスト名
## \t 時間(24時間形式)
## \u ユーザー名
## \w 現在のディレクトリ(フルパス)
## \W 現在のディレクトリ名
##PS1="\u: \W $"
#PS1="\u \t[\w] $ "
# 個別バイナリのパス
export PATH=$PATH:$HOME/bin/
#####################################################################################################
# lima VM
#####################################################################################################
# limactl start
# export DOCKER_HOST=ssh://localhost:60006
### メモ書き
### https://qiita.com/yoichiwo7/items/44aff38674134ad87da3
### https://korosuke613.hatenablog.com/entry/2021/09/18/docker-on-lima
### 今の最新のCLI
# wget https://download.docker.com/mac/static/stable/x86_64/docker-20.10.12.tgz
### Install Docker CLI
# mkdir -p $HOME/bin
# tar xzvf docker-20.10.8.tgz
# mv docker/docker $HOME/bin/.
# chmod 755 $HOME/bin/docker
### パス通すとかは各々してください
### lima VM のインストール
# brew install lima
# limactl start
# lima uname -r
# curl -fsSL https://get.docker.com | lima
### limactl start はbashrcとかに記述して勝手に起動するようにしても可能
#####################################################################################################
# function
#####################################################################################################
# load nvm
function load_nvm () {
echo "add PATH for node.js"
export PATH="/usr/local/bin:$PATH:/usr/local/sbin"
source ~/.nvm/nvm.sh
alias node="node --experimental-modules"
echo "set NODE_PATH for node.js"
export NODE_PATH=$npm_dir
}
# 不要ファイルを一度に削除したかった。
function ccc () {
rm `find . -name .DS*`
rm `find . -name *.swp`
rm `find . -name Thumbs.db`
return
}
# scss 単体コンパイル
function scss1compile () {
filename=$(echo $1 | sed 's/.scss$//g')
scss --compass ${filename}.scss ${filename}.css -C --sourcemap=none --style compressed
return
}
function scss1watch () {
filename=$(echo $1 | sed 's/.scss$//g')
scss --watch${filename}.scss:${filename}.css -C --sourcemap=none --style compressed
return
}
function scsswwatch () {
input=$1
output=$2
scss --watch ${input}:${output} -C --sourcemap=none --style compressed
return
}
function up() {
if [ ! -z $1 ]; then
level=$1
else
level=1
fi
expr $level + 1 > /dev/null 2>&1
ret=$?
cmd='cd ./'
if [ $ret -lt 2 ]; then
for i in `seq 1 $level`
do
cmd="$cmd../"
done
eval $cmd;
fi
}
# ag
function agg() {
if [ ! -z $1 ]; then
query=$1
else
query=''
fi
eval 'ag -l -u --depth -1 '${query}' ./*';
}
#####################################################################################################
# cordova
#####################################################################################################
# export PATH="$PATH:/Applications/AndroidSDK/adt-bundle-mac-x86_64-20140321/sdk/tools/"
# export PATH="$PATH:/Applications/AndroidSDK/adt-bundle-mac-x86_64-20140321/sdk/platform-tools/"
#####################################################################################################
# nginx
#####################################################################################################
# export PATH="/usr/local/nginx/sbin:$PATH"
#####################################################################################################
# git
#####################################################################################################
# git config --global credential.helper cache --timeout=86400
# git config --global core.editor /Applications/MacVim.app/Contents/MacOS/Vim
# gitignoreを設置したくないときに切り分けとして使えなくもない
# git config --global core.excludesfile ~/.gitignore
# 空コミット
# git commit --allow-empty -m "make pull request"
#差分ファイル出すとき用
# git_diff_archive 識別子1 識別子2
. ~/bash/git_diff_archive.sh
# peco,vim,pt
. ~/bash/ptvim.sh
git config --global color.ui auto
git config --global alias.co checkout
git config --global alias.ci commit
#git config --global alias.st status
git config --global alias.br branch
git config --global alias.hist 'log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short'
git config --global alias.st 'status --branch --short'
git config --global alias.sl 'log --all --branches --decorate --graph --oneline'
git config --global alias.log 'log --all --branches --graph'
# -no-ff でふぉるとに
git config --global --add merge.ff false
# pullは fast-forword
git config --global --add pull.ff only
#git config --global alias.log 'log --all --branches --graph'
#git show-branch --merge-base master HEAD
#git diff `git show-branch --merge-base master HEAD` HEAD
#####################################################################################################
# zsh
#####################################################################################################
# zsh
#####################################################################################################
# tmux
#####################################################################################################
if [ `which tmux` ]; then
if ! [ -n "$TMUX" ]; then
load_nvm
#nvm use --lts
npm_dir=${NVM_PATH}_modules
tmux a -d || tmux -u
else
load_nvm
#nvm use --lts
. ~/bash/tmux/alias.sh
tmux source-file ~/.tmux.conf
fi
fi
#####################################################################################################
# peco
#####################################################################################################
function cdf () {
local dir=$(find ./* -type f | grep -v 'node_modules' | peco)
if [ ! -z "$dir" ] ; then
vim "$dir"
fi
}
function cdd {
local dir=$(find ./* -type d | grep -v 'node_modules' | peco)
if [ ! -z "$dir" ] ; then
cd "$dir"
fi
}
function cddf {
local dir=$(find ./* -type d | peco)
if [ ! -z "$dir" ] ; then
cd "$dir"
fi
}
function cdff () {
local dir=$(find ./* -type f | peco)
if [ ! -z "$dir" ] ; then
vim "$dir"
fi
}
#####################################################################################################
# github
#####################################################################################################
source ~/bash/git-completion.bash
source ~/bash/git-prompt.sh
GIT_PS1_SHOWUPSTREAM=1
GIT_PS1_SHOWSTASHSTATE=1
export PS1='\[\e[0;37m\e[40m\]\u\[\e[0m\]:\[\e[0;96m\e[40m\]\w\[\e[1;92m\e[40m\]$(__git_ps1)\[\e[0m\] $ '
#####################################################################################################
# function
#####################################################################################################
#####################################################################################################
# fake-dev
#####################################################################################################
#alias fake-dev="nginx -p . -c ~/.fake-dev.conf"
#####################################################################################################
# alias
#####################################################################################################
case "${OSTYPE}" in
darwin*)
alias ls="ls -G"
alias ll="ls -lG"
alias la="ls -laG"
alias openf='sh ~/bash/openf'
;;
linux*)
alias ls='ls --color'
alias ll='ls -l --color'
alias la='ls -la --color'
;;
esac
alias cdc='cd `pwd -P`'
alias vi='vim'
# github
alias gitst='git st'
alias gitdiff='git difftool --tool=vimdiff --no-prompt'
alias gitlmm='git log origin/master..master'
#alias adbDebug='sh ~/bash/androidDebug.sh'
alias tmux-session-clear='tmux kill-session -a'
# ディレクトリの容量表示
alias dud='du -d 1 -h '
alias gitfilemode='git config core.filemode'
alias spwget='wget --user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1" '
#####################################################################################################
# avn
#####################################################################################################
if [ `which avn` ]; then
echo "avn ready"
else
[[ -s "$HOME/.avn/bin/avn.sh" ]] && source "$HOME/.avn/bin/avn.sh" # load avn
fi
. "/Users/sv.junic/.deno/env"
source /usr/local/etc/bash_completion.d/deno.bash