# Use powerline USE_POWERLINE="true" # 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. alias reload-zsh="source ~/.zshrc" alias edit-zsh="nvim ~/.zshrc" alias v="nvim" eval "$(starship init zsh)" # history setup HISTFILE=$HOME/.zhistory SAVEHIST=1000 HISTSIZE=999 setopt share_history setopt hist_expire_dups_first setopt hist_ignore_dups setopt hist_verify # completion using arrow keys (based on history) bindkey '^[[A' history-search-backward bindkey '^[[B' history-search-forward export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion export PATH="$HOME/.rbenv/shims:$PATH" # ---- FZF ----- # Set up fzf key bindings and fuzzy completion eval "$(fzf --zsh)" # --- setup fzf theme --- fg="#CBE0F0" bg="#011628" bg_highlight="#143652" purple="#B388FF" blue="#06BCE4" cyan="#2CF9ED" export FZF_DEFAULT_OPTS="--color=fg:${fg},bg:${bg},hl:${purple},fg+:${fg},bg+:${bg_highlight},hl+:${purple},info:${blue},prompt:${cyan},pointer:${cyan},marker:${cyan},spinner:${cyan},header:${cyan}" # -- Use fd instead of fzf -- 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" # Use fd (https://github.com/sharkdp/fd) for listing path candidates. # - The first argument to the function ($1) is the base path to start traversal # - See the source code (completion.{bash,zsh}) for the details. _fzf_compgen_path() { fd --hidden --exclude .git . "$1" } # Use fd to generate the list for directory completion _fzf_compgen_dir() { fd --type=d --hidden --exclude .git . "$1" } source ~/fzf-git.sh show_file_or_dir_preview="if [ -d {} ]; then eza --tree --color=always {} | head -200; else bat -n --color=always --line-range :500 {}; fi" export FZF_CTRL_T_OPTS="--preview '$show_file_or_dir_preview'" export FZF_ALT_C_OPTS="--preview 'eza --tree --color=always {} | head -200'" # Advanced customization of fzf options via _fzf_comprun function # - The first argument to the function is the name of the command. # - You should make sure to pass the rest of the arguments to fzf. _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 "$show_file_or_dir_preview" "$@" ;; esac } # ----- Bat (better cat) ----- export BAT_THEME=tokyonight # ---- Eza (better ls) ----- alias ls="eza --icons=always" # ---- TheFuck ----- # thefuck alias eval $(thefuck --alias) eval $(thefuck --alias fk) # ---- Zoxide (better cd) ---- eval "$(zoxide init zsh)" alias cd="z"