19 lines
432 B
Bash
19 lines
432 B
Bash
export ZSH=~/.oh-my-zsh
|
|
|
|
ZSH_THEME="kardan"
|
|
|
|
ENABLE_CORRECTION="true"
|
|
|
|
[[ -s ~/.autojump/etc/profile.d/autojump.sh ]] && source ~/.autojump/etc/profile.d/autojump.sh
|
|
autoload -U compinit && compinit -u
|
|
|
|
FRONTEND_SEARCH_FALLBACK='duckduckgo'
|
|
|
|
ZSH_TMUX_AUTOSTART=true
|
|
ZSH_TMUX_FIXTERM=true
|
|
|
|
plugins=(git zsh-autosuggestions autojump fancy-ctrl-z frontend-search tmux)
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|