# https://github.com/romkatv/zsh4humans/blob/v5/README.md (tmux: integrated, system, no) zstyle ':z4h:' start-tmux 'no' # keyboard setting zstyle ':z4h:bindkey' keyboard 'pc' zstyle ':z4h:autosuggestions' forward-char 'accept' zstyle ':z4h:fzf-complete' recurse-dirs 'no' # automatic teleportation of z4h to ssh (yes, no) example: zstyle ':z4h:ssh:pxm' enable 'yes' zstyle ':z4h:ssh:*' enable 'no' # direnv enable zstyle ':z4h:direnv' enable 'yes' zstyle ':z4h:direnv:success' notify 'no' # install plugins z4h install ohmyzsh/ohmyzsh || return z4h install urbainvaes/fzf-marks || return z4h install mroth/evalcache || return z4h install trapd00r/LS_COLORS || return z4h install zpm-zsh/colorize || return # initialize z4h z4h init || return # exports z4h source -c $HOME/.config/zsh/export.zsh z4h source -c $HOME/.config/local/env.zsh # libraries (ohmyzsh) for l in 'history' 'completion' 'directories' 'clipboard' 'grep'; do z4h source -c $OML/$l.zsh; done # plugins (ohmyzsh) for p in 'command-not-found' 'extract' 'systemd'; do z4h source -c $OMP/$p/$p.plugin.zsh; done # plugins (self) z4h source -c $Z4H/urbainvaes/fzf-marks/fzf-marks.plugin.zsh z4h source -c $Z4H/mroth/evalcache/evalcache.plugin.zsh z4h source -c $Z4H/zpm-zsh/colorize/colorize.plugin.zsh # eval stuff _evalcache zoxide init zsh _evalcache navi widget zsh _evalcache dircolors -b $LSCOLORSFILE # aliases z4h source -c $HOME/.config/zsh/aliases.zsh z4h source -c $HOME/.config/local/aliases.zsh # key bindings z4h source -c $HOME/.config/zsh/keybinds.zsh # ssh stuff z4h source -c $HOME/.config/zsh/sshagent.zsh z4h source -c $HOME/.config/zsh/sshcompfix.zsh # named directories [[ -z $z4h_win_home ]] || hash -d wsl=$z4h_win_home # localrc z4h source -c $HOME/.config/local/rc.zsh