-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.zshrc
More file actions
25 lines (17 loc) · 740 Bytes
/
Copy path.zshrc
File metadata and controls
25 lines (17 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ls縺ョ邨先棡繧偵き繝ゥ繝シ縺ォ縺吶k
alias ls='ls -G'
##ls縺ョ濶イ繧偵す繧「繝ウ縺ォ縺吶k縲export LSCOLORS=gxfxcxdxbxegedabagacad
export PS1='\W $ '
autoload -Uz compinit && compinit
autoload -Uz vcs_info
precmd_vcs_info() { vcs_info }
precmd_functions+=( precmd_vcs_info )
setopt prompt_subst
PROMPT='%~ $ '
RPROMPT=\$vcs_info_msg_0_
# PROMPT=\$vcs_info_msg_0_'%# '
zstyle ':vcs_info:git:*' formats '%b'
alias pr-create='gh pr create -w'
alias pr-open='gh pr view -w'
alias llm-branch-name='git diff --staged | llm -s "Please create git branch name from git diff. output is only branch name"'
alias llm-branch-create='git diff --staged | llm -s "Please create git branch name from git diff. output is only branch name" | xargs git co -b'