12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- 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
- FZF_PATH=/usr/share/doc/fzf/
- source $FZF_PATH/completion.zsh
- source $FZF_PATH/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)
|