111 lines
2.9 KiB
Bash
111 lines
2.9 KiB
Bash
#extend path
|
|
path=(~/bin $path)
|
|
path=(~/.local/bin $path)
|
|
path=(~/.cache/lk-tools/fzf/bin $path)
|
|
|
|
|
|
# Init OhMyPosh
|
|
eval "$(oh-my-posh init zsh --config https://gitea.phasefinal.com/vh/dotfiles/raw/branch/master/home_config/ohmyposh/lkraven.toml)"
|
|
|
|
# Set ZINIT Home
|
|
ZINIT_HOME="${HOME}/.config/zinit/zinit.git"
|
|
|
|
# Download ZINIT
|
|
if [ ! -f "${ZINIT_HOME}/zinit.zsh" ]; then
|
|
mkdir -p "$(dirname $ZINIT_HOME)"
|
|
git clone https://github.com/zdharma-continuum/zinit.git "$ZINIT_HOME"
|
|
fi
|
|
|
|
# Load Zinit
|
|
source "${ZINIT_HOME}/zinit.zsh"
|
|
|
|
# add zinit
|
|
zinit light zsh-users/zsh-syntax-highlighting
|
|
zinit light zsh-users/zsh-completions
|
|
zinit light zsh-users/zsh-autosuggestions
|
|
|
|
# Load completions
|
|
autoload -U compinit && compinit
|
|
zinit cdreplay -q
|
|
|
|
# keybindings
|
|
bindkey -e
|
|
bindkey '^p' history-search-backward
|
|
bindkey '^n' history-search-forward
|
|
|
|
# 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
|
|
setopt hist_verify
|
|
|
|
# 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'
|
|
zstyle ':fzf-tab:*' fzf-command ftb-tmux-popup
|
|
|
|
# aliases
|
|
alias ls='eza'
|
|
alias cat='bat'
|
|
alias tree='eza --tree'
|
|
|
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
|
# [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
|
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
|
|
|
export FZF_DEFAULT_COMMAND="fd --hidden --strip-cwd-prefix --exclude .git"
|
|
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
|
|
_fzf_compgen_path() {
|
|
fd --hidden --exclude .git . "$1"
|
|
}
|
|
|
|
_fzf_compgen_dir() {
|
|
fd --type=d --hidden --exclude .git . "$1"
|
|
}
|
|
|
|
source ~/fzf-git.sh/fzf-git.sh
|
|
|
|
export FZF_CTRL_T_OPTS="--preview 'bat -n --color=always --line-range :500 {}'"
|
|
export FZF_ALT_C_OPTS="--preview 'eza --tree --color=always {} | head -200'"
|
|
|
|
_fzf_comprun() {
|
|
local command=$1
|
|
shift
|
|
case "$command" in
|
|
cd) fzf --preview 'eza --tree --color=always {} | head -200' "$@" ;;
|
|
export|unset) fzf --preview "eval 'echo \$' {}" "$@" ;;
|
|
ssh) fzf --preview 'dig {}' "$@" ;;
|
|
*) fzf --preview 'bat -n --color=always --line-range :500 {}' "$@" ;;
|
|
esac
|
|
}
|
|
export BAT_THEME=Nord
|
|
eval "$(zoxide init zsh)"
|
|
alias cd='z'
|
|
|
|
eval $(thefuck --alias)
|
|
eval $(thefuck --alias fk)
|
|
|
|
zinit light Aloxaf/fzf-tab
|
|
|
|
|
|
if [[ $(uname) == "Darwin" ]]; then
|
|
source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh
|
|
elif [[ $(uname) == "Linux" ]]; then
|
|
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
|
|
fi
|
|
|
|
|
|
bindkey '^[[B' history-search-forward
|
|
bindkey '^[[A' history-search-backward
|