2024-05-22 10:03:03 +00:00
|
|
|
# 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
|
|
|
|
|
2024-05-22 07:40:15 +00:00
|
|
|
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"
|
2024-05-22 10:03:03 +00:00
|
|
|
|
|
|
|
zinit ice depth=1; zinit light romkatv/powerlevel10k
|
|
|
|
|
|
|
|
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 snippet OMZP::git
|
|
|
|
zinit snippet OMZP::sudo
|
|
|
|
zinit snippet OMZP::archlinux
|
|
|
|
|
|
|
|
autoload -Uz compinit && compinit
|
|
|
|
|
|
|
|
zinit cdreplay -q
|
|
|
|
|
|
|
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
|
|
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
|
|
|
|
|
|
|
# Keybindings
|
|
|
|
bindkey -e
|
|
|
|
bindkey '^p' history-search-backward
|
|
|
|
bindkey '^n' history-search-forward
|
|
|
|
bindkey '^[w' kill-region
|
|
|
|
|
|
|
|
# History
|
|
|
|
HISTSIZE=5000
|
|
|
|
HISTFILE=~/.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 zz="cd -"
|
|
|
|
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"
|
2024-05-23 10:32:42 +00:00
|
|
|
alias lg="lazygit"
|
2024-05-27 19:00:04 +00:00
|
|
|
alias cc="clear"
|
2024-05-22 10:03:03 +00:00
|
|
|
|
|
|
|
# Shell integrations
|
|
|
|
eval "$(fzf --zsh)"
|
|
|
|
eval "$(zoxide init --cmd cd zsh)"
|
2024-05-23 06:28:40 +00:00
|
|
|
|
|
|
|
# bun completions
|
|
|
|
[ -s "/home/laurent/.bun/_bun" ] && source "/home/laurent/.bun/_bun"
|
|
|
|
|
|
|
|
# bun
|
|
|
|
export BUN_INSTALL="$HOME/.bun"
|
2024-05-23 10:32:42 +00:00
|
|
|
export PATH="$HOME/go/bin:$BUN_INSTALL/bin:$PATH"
|