38 lines
1.3 KiB
Bash
38 lines
1.3 KiB
Bash
|
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
||
|
# Initialization code that may require console input (password prompts, [y/n]
|
||
|
# confirmations, etc.) must go above this block; everything else may go below.
|
||
|
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
||
|
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
||
|
fi
|
||
|
|
||
|
source ~/zsh/powerlevel10k/powerlevel10k.zsh-theme
|
||
|
|
||
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||
|
|
||
|
# History in cache directory:
|
||
|
HISTSIZE=10000
|
||
|
SAVEHIST=10000
|
||
|
HISTFILE=~/.cache/zshhistory
|
||
|
|
||
|
# Basic auto/tab complete:
|
||
|
autoload -U compinit
|
||
|
zstyle ':completion:*' menu select
|
||
|
zmodload zsh/complist
|
||
|
compinit
|
||
|
_comp_options+=(globdots) # Include hidden files.
|
||
|
|
||
|
# Custom ZSH Binds
|
||
|
bindkey '^ ' autosuggest-accept
|
||
|
bindkey "^[[H" beginning-of-line
|
||
|
bindkey "^[[F" end-of-line
|
||
|
bindkey "^[[3~" delete-char
|
||
|
|
||
|
# Load aliases and shortcuts if existent.
|
||
|
[ -f "$HOME/zsh/aliasrc" ] && source "$HOME/zsh/aliasrc"
|
||
|
|
||
|
# Load ; should be last.
|
||
|
source $HOME/zsh/zsh-autosuggestions/zsh-autosuggestions.zsh 2>/dev/null
|
||
|
source $HOME/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
|
||
|
source /usr/share/autojump/autojump.zsh 2>/dev/null
|