1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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"
- ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern cursor)
- # 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
- zsh-autosuggestions
- zsh-syntax-highlighting
- )
- source $ZSH/oh-my-zsh.sh
- # User configuration
- source ~/.aliases
- bindkey -v
- # Fuzzy Finder
- [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
- fzf-history-widget-accept() {
- fzf-history-widget
- zle accept-line
- }
- zle -N fzf-history-widget-accept
- bindkey '^X^R' fzf-history-widget-accept
|