|
1 | | -### ohmyzsh |
2 | | -export ZSH="${HOME}/.oh-my-zsh" |
3 | | -export ZSH_COMPDUMP="${HOME}/.cache/zcompdump/zcompdump-${ZSH_VERSION}" |
4 | | -DISABLE_AUTO_TITLE="true" |
5 | | -DISABLE_LS_COLORS="true" |
6 | | -ENABLE_CORRECTION="false" |
7 | | -plugins=(aliases brew copypath docker docker-compose forklift git golang gpg-agent gradle kubectl kubectx npm pip poetry python virtualenv vscode yarn) |
8 | | -fpath+=${ZSH_CUSTOM:-${ZSH:-~/.oh-my-zsh}/custom}/plugins/zsh-completions/src |
9 | | -source ${ZSH}/oh-my-zsh.sh |
10 | | - |
11 | 1 | ### shell integration |
| 2 | +export ZSH_COMPDUMP="${HOME}/.cache/zcompdump/zcompdump-${ZSH_VERSION}" |
12 | 3 | export STARSHIP_CONFIG="${HOME}/.config/starship/starship.toml" |
13 | 4 | eval "$(starship init zsh)" |
14 | 5 | eval "$(zoxide init zsh)" |
15 | 6 | eval "$(atuin init zsh --disable-up-arrow)" |
16 | 7 | source ${HOMEBREW_PREFIX}/opt/git-extras/share/git-extras/git-extras-completion.zsh |
17 | 8 | source ${HOMEBREW_PREFIX}/share/zsh-autosuggestions/zsh-autosuggestions.zsh |
18 | 9 | source ${HOMEBREW_PREFIX}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh |
19 | | - |
20 | | -### terminal title |
21 | | -case ${TERM} in |
22 | | - xterm*) |
23 | | - precmd () {print -Pn "\e]0;%~\a"} |
24 | | - ;; |
25 | | -esac |
| 10 | +source ${HOME}/tools/zsh-plugins/alias.plugin.zsh |
| 11 | +source ${HOME}/tools/zsh-plugins/docker.plugin.zsh |
| 12 | +source ${HOME}/tools/zsh-plugins/docker-compose.plugin.zsh |
| 13 | +FPATH=${HOMEBREW_PREFIX}/share/zsh-completions:${FPATH} |
| 14 | +autoload -Uz compinit |
| 15 | +compinit -C |
26 | 16 |
|
27 | 17 | ### variables |
28 | 18 | export LS_COLORS="di=36:ln=38;5;210:or=31:so=32:pi=33:ex=32:bd=34;46:cd=34;43:su=30;41:sg=30;46:tw=30;42:ow=30;43" |
| 19 | +export PATH="/opt/homebrew/opt/curl/bin:${PATH}" |
29 | 20 | export PATH="/opt/homebrew/opt/llvm/bin:${PATH}" |
30 | 21 | export PATH="${HOME}/go/bin:${PATH}" |
31 | 22 | export PATH="${HOME}/.krew/bin:${PATH}" |
|
0 commit comments