You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# zstyle ':omz:update' mode auto # update automatically without asking
42
+
# zstyle ':omz:update' mode reminder # just remind me to update when it's time
43
+
44
+
# Uncomment the following line to change how often to auto-update (in days).
45
+
# zstyle ':omz:update' frequency 13
46
+
47
+
# Uncomment the following line if pasting URLs and other text is messed up.
48
+
# DISABLE_MAGIC_FUNCTIONS="true"
49
+
50
+
# Uncomment the following line to disable colors in ls.
51
+
# DISABLE_LS_COLORS="true"
52
+
53
+
# Uncomment the following line to disable auto-setting terminal title.
54
+
# DISABLE_AUTO_TITLE="true"
55
+
56
+
# Uncomment the following line to enable command auto-correction.
57
+
# ENABLE_CORRECTION="true"
58
+
59
+
# Uncomment the following line to display red dots whilst waiting for completion.
60
+
# You can also set it to another string to have that shown instead of the default red dots.
61
+
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
62
+
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
63
+
# COMPLETION_WAITING_DOTS="true"
64
+
65
+
# Uncomment the following line if you want to disable marking untracked files
66
+
# under VCS as dirty. This makes repository status check for large repositories
67
+
# much, much faster.
68
+
# DISABLE_UNTRACKED_FILES_DIRTY="true"
69
+
70
+
# Uncomment the following line if you want to change the command execution time
71
+
# stamp shown in the history command output.
72
+
# You can set one of the optional three formats:
73
+
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
74
+
# or set a custom format using the strftime function format specifications,
75
+
# see 'man strftime' for details.
76
+
# HIST_STAMPS="mm/dd/yyyy"
77
+
78
+
# Would you like to use another custom folder than $ZSH/custom?
79
+
# ZSH_CUSTOM=/path/to/new-custom-folder
80
+
24
81
# Which plugins would you like to load?
25
82
# Standard plugins can be found in $ZSH/plugins/
26
83
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
@@ -60,19 +117,33 @@ source $ZSH/oh-my-zsh.sh
60
117
61
118
# export NVM_DIR=~/.nvm
62
119
#source $(brew --prefix nvm)/nvm.sh
120
+
# zoxide
121
+
eval"$(zoxide init zsh)"
122
+
63
123
64
124
# alias
65
-
alias dui='cd /Users/ts-rodrigo.diaz/Documents/PROJECTS/dynamic-ui'
125
+
alias dui='cd /Users/ts-rodrigo.diaz/Documents/dynamic-ui'
66
126
alias develop='git checkout develop'
67
127
alias run-shop-top='DEFAULT_FEATURES=ichiba npm run app:watch-dev -- --env.pages=shop-top'
68
128
alias run-item='DEFAULT_FEATURES=ichiba npm run app:watch-dev -- --env.pages=item'
129
+
alias run-item-pc='DEFAULT_FEATURES=ichiba API_URL=http://rmsj-rpage-dapi-9508.rwasp-stg.hnd2.bdd.local npm run app:watch-dev -- --env.pages=item-pc'
130
+
alias run-checkout0='DEFAULT_FEATURES=ichiba ENABLE_QA_ROLE=1 API_URL=http://rmsj-rpage-dapi-9508.rwasp-stg.hnd2.bdd.local npm run app:watch-dev -- --env.pages=checkout-step0'
131
+
alias run-checkout2-5='DEFAULT_FEATURES=ichiba ENABLE_QA_ROLE=1 API_URL=http://rmsj-rpage-dapi-9508.rwasp-stg.hnd2.bdd.local npm run app:watch-dev -- --env.pages=checkout-step2-5'
69
132
alias test-unit-all='npm run test:unit -- --all'
70
133
alias build-shop-top='DEFAULT_FEATURES=ichiba npm run app:build -- --env.pages=shop-top'
71
134
alias amend='git commit --amend'
135
+
alias yabai-start='yabai --start-service'
72
136
alias yabai-restart='brew services restart yabai'
73
137
alias yabai-stop='brew services stop yabai'
74
-
alias unsafe-chrome='open -n -a /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args --user-data-dir="/Users/ts-rodrigo.diaz/InsecChrome" --disable-web-security --ignore-certificate-errors'
138
+
alias unsafe-chrome='open -n -a /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args --user-data-dir="/Users/ts-rodrigo.diaz/InsecChrome" --disable-web-security --ignore-certificate-errors'
75
139
alias python3='python3.10'
140
+
alias watch9502='DEFAULT_FEATURES=ichiba API_URL=http://rmsj-rpage-dapi-9502.rwasp-stg.hnd2.bdd.local npm run app:watch-dev -- --env.pages=item'
141
+
alias search='bash ~/.scripts/search'
142
+
alias cd='z'
143
+
alias unit-test='npm run test:unit --coverage'
144
+
alias e2e-run='TEST_DEVICE=DESKTOP_FULL,IPHONE_VERTICAL TEST_PROXY=http://stg.checkproxy.rakuten-it.com:9502 npm run start:dev'
145
+
alias gitto-create-branch='~/bin/gitto --command create'
146
+
alias reverse-proxy='mitmdump --ssl-insecure -p 9400 -s ~/reverse-proxy.py'
0 commit comments