加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.zshrc.mac 844 Bytes
一键复制 编辑 原始数据 按行查看 历史
RUNFUNRUN 提交于 2024-11-06 22:05 . update
export TERM="xterm-256color"
export EDITOR="nvim"
export VOLTA_HOME="$HOME/.volta"
export PATH="$VOLTA_HOME/bin:$PATH"
export PATH="$HOME/.commands:$PATH"
export PATH="$HOME/.bin:$PATH"
export PATH="$HOME/.bun/bin:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"
export PATH="$HOME/.local/nvim-macos/bin:$PATH"
export GPG_TTY=$(tty)
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME=""
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
source $ZSH/oh-my-zsh.sh
eval "$(starship init zsh)"
eval "$(github-copilot-cli alias -- "$0")"
[ -s "/home/runfunrun/.bun/_bun" ] && source "/home/runfunrun/.bun/_bun"
alias icat="kitten icat"
alias gd="git difftool --no-symlinks --dir-diff"
alias clock="tty-clock -sc -C4"
set_tab_title() {
local display_path="${PWD/#$HOME/~}"
echo -ne "\033]0;${display_path:t}\007"
}
precmd_functions+=(set_tab_title)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化