123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- source ~/.profile
- export ZSH=/home/frans/.oh-my-zsh
- ZSH_THEME="michelebologna"
- COMPLETION_WAITING_DOTS="true"
- DISABLE_UNTRACKED_FILES_DIRTY="true"
- plugins=(
- git
- )
- source $ZSH/oh-my-zsh.sh
- source ~/.aliases
- bindkey -v
- source /usr/share/fzf/completion.zsh
- source /usr/share/fzf/key-bindings.zsh
- fzf-history-widget-accept() {
- fzf-history-widget
- zle accept-line
- }
- zle -N fzf-history-widget-accept
- bindkey '^X^R' fzf-history-widget-accept
- source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
- source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
- ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern cursor)
|