12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- source ~/.profile
- # Path to your oh-my-zsh installation.
- export ZSH=/home/frans/.oh-my-zsh
- # Set name of the theme to load. Optionally, if you set this to "random"
- # it'll load a random theme each time that oh-my-zsh is loaded.
- # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
- ZSH_THEME="michelebologna"
- # Uncomment the following line to display red dots whilst waiting for completion.
- COMPLETION_WAITING_DOTS="true"
- # Uncomment the following line if you want to disable marking untracked files
- # under VCS as dirty. This makes repository status check for large repositories
- # much, much faster.
- DISABLE_UNTRACKED_FILES_DIRTY="true"
- # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
- # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
- # Example format: plugins=(rails git textmate ruby lighthouse)
- # Add wisely, as too many plugins slow down shell startup.
- plugins=(
- git
- )
- source $ZSH/oh-my-zsh.sh
- # User configuration
- source ~/.aliases
- bindkey -v
- # Fuzzy Finder
- 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)
|