82 lines
2.2 KiB
Bash
82 lines
2.2 KiB
Bash
ZINIT_HOME="${XDG_DATA_HOME:-${HOME}/.local/share}/zinit/zinit.git"
|
|
|
|
if [ ! -d "$ZINIT_HOME" ]; then
|
|
mkdir -p "$(dirname $ZINIT_HOME)"
|
|
git clone https://github.com/zdharma-continuum/zinit.git "$ZINIT_HOME"
|
|
fi
|
|
|
|
source "${ZINIT_HOME}/zinit.zsh"
|
|
|
|
zinit light zsh-users/zsh-syntax-highlighting
|
|
zinit light zsh-users/zsh-completions
|
|
zinit light zsh-users/zsh-autosuggestions
|
|
zinit light Aloxaf/fzf-tab
|
|
zinit light fdw/yazi-zoxide-zsh
|
|
|
|
zinit snippet OMZP::git
|
|
zinit snippet OMZP::sudo
|
|
zinit snippet OMZP::archlinux
|
|
|
|
autoload -Uz compinit && compinit
|
|
zinit cdreplay -q
|
|
|
|
eval "$(oh-my-posh init zsh --config $HOME/.config/ohmyposh/config.json)"
|
|
|
|
# Keybindings
|
|
bindkey -e
|
|
bindkey '^p' history-search-backward
|
|
bindkey '^n' history-search-forward
|
|
bindkey '^[w' kill-region
|
|
# Bind Home key to beginning-of-line
|
|
bindkey '^[[H' beginning-of-line
|
|
bindkey '^[[1~' beginning-of-line
|
|
# Bind End key to end-of-line
|
|
bindkey '^[[F' end-of-line
|
|
bindkey '^[[4~' end-of-line
|
|
# Bind Delete key to delete-char
|
|
bindkey '^[[3~' delete-char
|
|
|
|
# History
|
|
HISTSIZE=5000
|
|
mkdir -p "${XDG_STATE_HOME:-$HOME/.local/state}/zsh"
|
|
HISTFILE="${XDG_STATE_HOME:-$HOME/.local/state}/zsh/history"
|
|
SAVEHIST=$HISTSIZE
|
|
HISTDUP=erase
|
|
setopt appendhistory
|
|
setopt sharehistory
|
|
setopt hist_ignore_space
|
|
setopt hist_ignore_all_dups
|
|
setopt hist_save_no_dups
|
|
setopt hist_ignore_dups
|
|
setopt hist_find_no_dups
|
|
|
|
|
|
# Completion styling
|
|
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
|
|
zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}"
|
|
zstyle ':completion:*' menu no
|
|
zstyle ':fzf-tab:complete:cd:*' fzf-preview 'ls --color $realpath'
|
|
zstyle ':fzf-tab:complete:__zoxide_z:*' fzf-preview 'ls --color $realpath'
|
|
|
|
# Aliases
|
|
alias ls="eza"
|
|
alias ll="eza -alh"
|
|
alias tree="eza --tree"
|
|
alias dcupd="docker compose up -d --remove-orphans"
|
|
alias dcdown="docker compose down"
|
|
alias dclogs="docker logs -f --tail 100"
|
|
alias vi="nvim"
|
|
alias vim="nvim"
|
|
alias lg="lazygit"
|
|
|
|
# Shell integrations
|
|
eval "$(fzf --zsh)"
|
|
eval "$(zoxide init --cmd cd zsh)"
|
|
|
|
# bun completions
|
|
export BUN_INSTALL="${bun_install:-$HOME/.bun}"
|
|
[ -s "$BUN_INSTALL/_bun" ] && source "$BUN_INSTALL/_bun"
|
|
|
|
export TERM=xterm-256color
|
|
export PATH="$HOME/go/bin:$BUN_INSTALL/bin:$HOME/.local/bin:$HOME/.npm-global/bin:$PATH"
|