41 lines
1.1 KiB
Bash
41 lines
1.1 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 ~/powerlevel10k/powerlevel10k.zsh-theme
|
|
|
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
|
|
|
# bindkeys
|
|
bindkey "^[[1;5C" forward-word
|
|
bindkey "^[[1;5D" backward-word
|
|
bindkey "^H" backward-kill-word
|
|
bindkey "5~" kill-word
|
|
bindkey "^[[H" beginning-of-line
|
|
bindkey "^[[F" end-of-line
|
|
bindkey "^[[3~" delete-char
|
|
|
|
autoload -U select-word-style
|
|
select-word-style bash
|
|
|
|
alias ll="exa --icons -la"
|
|
alias ls="ll"
|
|
alias cat="bat --style=auto"
|
|
|
|
alias docs="cd /mnt/e/Windows/Documents"
|
|
|
|
# asdf
|
|
. "$HOME/.asdf/asdf.sh"
|
|
|
|
# append completions to fpath
|
|
fpath=(${ASDF_DIR}/completions $fpath)
|
|
|
|
# initialise completions with ZSH's compinit
|
|
fpath+=~/.zfunc
|
|
|
|
autoload -Uz compinit && compinit
|