2020-09-07 08:30:23 +00:00
|
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
|
|
|
2021-07-19 06:33:55 +00:00
|
|
|
plugins=(
|
|
|
|
zsh-syntax-highlighting
|
|
|
|
)
|
2021-11-29 08:07:17 +00:00
|
|
|
autoload -U compinit
|
2020-09-07 08:30:23 +00:00
|
|
|
|
2021-11-29 08:07:17 +00:00
|
|
|
# Use this setting if you want to disable marking untracked files under VCS as dirty.
|
|
|
|
# This makes repository status checks for large repositories much, much faster.
|
2021-07-26 03:40:27 +00:00
|
|
|
DISABLE_UNTRACKED_FILES_DIRTY="true"
|
2021-07-26 05:53:44 +00:00
|
|
|
SHOW_AWS_PROMPT=false
|
2021-11-29 08:07:17 +00:00
|
|
|
COMPLETION_WAITING_DOTS=true
|
2021-07-26 03:40:27 +00:00
|
|
|
|
2020-09-07 08:30:23 +00:00
|
|
|
source $ZSH/oh-my-zsh.sh
|
2021-11-29 08:07:17 +00:00
|
|
|
zstyle ':omz:update' mode reminder
|
|
|
|
|
2021-10-14 09:11:17 +00:00
|
|
|
source `brew --prefix switch`/switch.sh
|
2020-09-07 08:30:23 +00:00
|
|
|
|
2021-11-29 08:07:17 +00:00
|
|
|
|
2020-09-07 08:30:23 +00:00
|
|
|
# History
|
|
|
|
HISTFILE="$HOME/.zsh_history"
|
|
|
|
HISTIGNORE="&:exit:reset:clear:zh"
|
|
|
|
setopt append_history
|
|
|
|
setopt hist_ignore_space
|
|
|
|
setopt HIST_IGNORE_DUPS
|
|
|
|
setopt sharehistory
|
|
|
|
setopt INC_APPEND_HISTORY
|
|
|
|
setopt HIST_REDUCE_BLANKS
|
|
|
|
|
|
|
|
# Options
|
|
|
|
setopt autocd
|
|
|
|
autoload -U add-zsh-hook
|
|
|
|
|
|
|
|
|
|
|
|
DISABLE_AUTO_TITLE="true"
|
|
|
|
|
|
|
|
# Override auto-title when static titles are desired ($ title My new title)
|
|
|
|
title() { export TITLE_OVERRIDDEN=1; echo -en "\e]0;$*\a"}
|
|
|
|
# Turn off static titles ($ autotitle)
|
|
|
|
autotitle() { export TITLE_OVERRIDDEN=0 }; autotitle
|
|
|
|
# Condition checking if title is overridden
|
|
|
|
overridden() { [[ $TITLE_OVERRIDDEN == 1 ]]; }
|
|
|
|
|
|
|
|
# Show cwd when shell prompts for input.
|
|
|
|
precmd() {
|
|
|
|
if overridden; then return; fi
|
|
|
|
pwd=$(pwd) # Store full path as variable
|
|
|
|
cwd=${pwd##*/} # Extract current working dir only
|
2021-07-26 03:40:27 +00:00
|
|
|
print -Pn "\e]0;$cwd\a" # Replace with $pwd to show full path
|
2020-09-07 08:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Prepend command (w/o arguments) to cwd while waiting for command to complete.
|
|
|
|
preexec() {
|
|
|
|
if overridden; then return; fi
|
2021-07-26 03:40:27 +00:00
|
|
|
printf "\033]0;%s\a" "${1%% *} | $cwd" # Omit construct from $1 to show args
|
2020-09-07 08:30:23 +00:00
|
|
|
}
|