35 lines
1018 B
Bash
35 lines
1018 B
Bash
|
# Enable colors and change prompt:
|
||
|
autoload -U colors && colors
|
||
|
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
|
||
|
|
||
|
# History in cache directory:
|
||
|
HISTSIZE=10000
|
||
|
SAVEHIST=10000
|
||
|
HISTFILE=~/.cache/zsh/history
|
||
|
|
||
|
# Basic auto/tab complete:
|
||
|
autoload -U compinit
|
||
|
zstyle ':completion:*' menu select
|
||
|
zmodload zsh/complist
|
||
|
compinit
|
||
|
_comp_options+=(globdots) # Include hidden files.
|
||
|
|
||
|
# Use lf to switch directories and bind it to ctrl-o
|
||
|
lfcd () {
|
||
|
tmp="$(mktemp)"
|
||
|
lf -last-dir-path="$tmp" "$@"
|
||
|
if [ -f "$tmp" ]; then
|
||
|
dir="$(cat "$tmp")"
|
||
|
rm -f "$tmp"
|
||
|
[ -d "$dir" ] && [ "$dir" != "$(pwd)" ] && cd "$dir"
|
||
|
fi
|
||
|
}
|
||
|
bindkey -s '^o' 'lfcd\n'
|
||
|
|
||
|
# Load aliases and shortcuts if existent.
|
||
|
[ -f "$HOME/.zsh/shortcutrc" ] && source "$HOME/.zsh/shortcutrc"
|
||
|
[ -f "$HOME/.zsh/aliasrc" ] && source "$HOME/.zsh/aliasrc"
|
||
|
|
||
|
# Load ; should be last.
|
||
|
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
|