# ============================================ # | | # | ███████╗███████╗██╗ ██╗██████╗ ██████╗ | # | ╚══███╔╝██╔════╝██║ ██║██╔══██╗██╔════╝ | # | ███╔╝ ███████╗███████║██████╔╝██║ | # | ███╔╝ ╚════██║██╔══██║██╔══██╗██║ | # | ███████╗███████║██║ ██║██║ ██║╚██████╗ | # | ╚══════╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ | # ============================================ autoload -U compinit && compinit autoload -U select-word-style select-word-style bash # autoload -Uz vcs_info # setopt CORRECT # setopt CORRECT_ALL setopt SHARE_HISTORY setopt APPEND_HISTORY setopt HIST_FIND_NO_DUPS setopt HIST_IGNORE_DUPS ZSH_COMPDUMP='/dev/null' HISTFILE=$HOME/.zsh_history HISTSIZE=1000 SAVEHIST=1000 zstyle ':fzf-tab:*' fzf-flags --color=fg:8,bg:-1,hl:6,fg+:15,bg+:0,hl+:13 zstyle ':completion:*' rehash true source $HOME/.scripts/zsh/hotkeys export PATH=$PATH:$HOME/.scripts:$HOME/.cargo/bin source /usr/share/zsh/plugins/fzf-tab-git/fzf-tab.plugin.zsh source /usr/share/zsh/plugins/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=13" export EDITOR=micro export TERM=alacritty alias zshcfg='micro $HOME/.zshrc' alias ac='micro $HOME/.config/alacritty/alacritty.yml' alias ls='exa -laFh --icons --group-directories-first' alias clear='clear && neofetch' alias xx='chmod +x' # alias ping='gping' # alias top='btop' # alias cat='gat' termcolors neofetch eval "$(starship init zsh)"