Added smyck colorscheme, which I foud on reddit today. Also, copied the prompt from zholman's dotfiles
30 lines
649 B
Bash
30 lines
649 B
Bash
setopt NO_BG_NICE
|
|
setopt NO_HUP
|
|
setopt NO_LIST_BEEP
|
|
setopt LOCAL_OPTIONS
|
|
setopt LOCAL_TRAPS
|
|
#setopt IGNORE_EOF
|
|
setopt PROMPT_SUBST
|
|
|
|
# history
|
|
setopt HIST_VERIFY
|
|
setopt EXTENDED_HISTORY
|
|
setopt HIST_REDUCE_BLANKS
|
|
setopt HIST_IGNORE_ALL_DUPS
|
|
setopt INC_APPEND_HISTORY SHARE_HISTORY
|
|
setopt APPEND_HISTORY
|
|
|
|
setopt COMPLETE_ALIASES
|
|
|
|
#export PS1='%3~ ☠ '
|
|
#export PS1='%3~$(git_info_for_prompt) ☠ '
|
|
|
|
# make terminal command navigation sane again
|
|
bindkey '^[^[[D' backward-word
|
|
bindkey '^[^[[C' forward-word
|
|
bindkey '^[[5D' beginning-of-line
|
|
bindkey '^[[5C' end-of-line
|
|
bindkey '^[[3~' delete-char
|
|
bindkey '^[^N' newtab
|
|
bindkey '^?' backward-delete-char
|