Files
dotfiles/.zshrc
2024-06-20 19:04:18 -07:00

126 lines
3.2 KiB
Bash

# Init OhMyPosh
eval "$(oh-my-posh init zsh --config $HOME/.config/ohmyposh/lkraven.toml)"
# Set ZINIT Home
ZINIT_HOME="${HOME}/.config/zinit/zinit.git"
# ZSH_TMUX_AUTOSTART=true
# 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
# Download Tmux Plugin Manager
TMUX_HOME="${HOME}/.config/tmux"
# Download Tmux plugin manager
if [ ! -d "${TMUX_HOME}/plugins/tpm" ]; then
mkdir -p "${TMUX_HOME}/plugins"
git clone https://github.com/tmux-plugins/tpm $TMUX_HOME/plugins/tpm
fi
if { [ "$TERM" = "screen" ] && [ -n "$TMUX" ]; } then
tmux source ${TMUX_HOME}/tmux.conf
fi
#extend path
path=(~/bin $path)
path=(~/.local/bin $path)
# 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
# zinit snippet OMZP::tmux
# 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
# 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"
export FZF_ALT_C_COMMAND="fd --type=d --hidden --strip-cwd-prefix --exclude .git"
_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=Dracula
eval "$(zoxide init zsh)"
alias cd='z'
eval $(thefuck --alias)
eval $(thefuck --alias fk)
zinit light Aloxaf/fzf-tab
if [[ -z "$TMUX" ]]; then
tmux has-session &> /dev/null
if [ $? -eq 1 ]; then
exec tmux new -s ssh_session
exit
else
exec tmux attach -t ssh_session
exit
fi
fi