28 lines
887 B
Bash
28 lines
887 B
Bash
autoload -U colors && colors # Load colors
|
|
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
|
|
setopt autocd # Automatically cd into typed directory.
|
|
stty stop undef # Disable ctrl-s to freeze terminal.
|
|
|
|
# History in cache directory:
|
|
HISTSIZE=1000
|
|
SAVEHIST=1000
|
|
HISTFILE=~/.cache/history
|
|
|
|
source "$XDG_CONFIG_HOME/shell/aliasrc"
|
|
|
|
# Basic auto/tab complete:
|
|
autoload -U compinit
|
|
zstyle ':completion:*' menu select
|
|
zmodload zsh/complist
|
|
compinit
|
|
_comp_options+=(globdots) # Include hidden files.
|
|
|
|
# Enable searching through history
|
|
bindkey '^R' history-incremental-pattern-search-backward
|
|
|
|
cowsay "$(shuf -n 1 ~/.local/share/vocab/words.txt)"
|
|
|
|
#should be last.
|
|
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
|