2016-03-31 02:03:55 +00:00
|
|
|
unsetopt MULTIBYTE
|
|
|
|
|
|
|
|
# Path to your oh-my-zsh installation.
|
2017-01-17 02:02:28 +00:00
|
|
|
ZSH=$HOME/.local/share/oh-my-zsh
|
2016-03-31 02:03:55 +00:00
|
|
|
|
|
|
|
# Set the theme
|
|
|
|
ZSH_THEME="fishy"
|
2017-01-17 02:02:28 +00:00
|
|
|
#DISABLE_AUTO_UPDATE="true"
|
2016-03-31 02:03:55 +00:00
|
|
|
|
2016-09-01 13:16:13 +00:00
|
|
|
CONFIG_DIR="${XDG_CONFIG_HOME:-$HOME/.config}"
|
|
|
|
ZSH_CONFIG_DIR=$CONFIG_DIR/zsh
|
|
|
|
ZSH_CACHE_DIR=$CONFIG_DIR/oh-my-zsh/cache
|
|
|
|
mkdir -p $ZSH_CACHE_DIR $ZSH_CONFIG_DIR
|
|
|
|
|
|
|
|
HISTFILE=$ZSH_CONFIG_DIR/histfile
|
2016-03-31 02:03:55 +00:00
|
|
|
HISTSIZE=100000
|
|
|
|
SAVEHIST=100000
|
2017-05-25 09:29:17 +00:00
|
|
|
setopt sharehistory histignoredups histignorespace histreduceblanks autocd autopushd extendedglob alwaystoend dvorak
|
2016-03-31 02:03:55 +00:00
|
|
|
|
|
|
|
export WORDCHARS='*?_[]~=&;!#$%^(){}'
|
|
|
|
|
2016-03-31 16:41:37 +00:00
|
|
|
bindkey -e
|
2016-04-01 16:39:45 +00:00
|
|
|
bindkey "\e[1;3C" forward-word
|
|
|
|
bindkey "\e[1;3D" backward-word
|
2016-03-31 02:03:55 +00:00
|
|
|
bindkey "^[[7~" beginning-of-line
|
|
|
|
bindkey "^[[8~" end-of-line
|
|
|
|
|
|
|
|
x-bash-backward-kill-word(){
|
|
|
|
WORDCHARS='' zle kill-word
|
|
|
|
}
|
|
|
|
zle -N x-bash-backward-kill-word
|
|
|
|
bindkey '^[^[[3~' x-bash-backward-kill-word
|
|
|
|
bindkey '^[^[[3^' x-bash-backward-kill-word
|
|
|
|
|
|
|
|
autoload -U up-line-or-beginning-search
|
|
|
|
autoload -U down-line-or-beginning-search
|
|
|
|
zle -N up-line-or-beginning-search
|
|
|
|
zle -N down-line-or-beginning-search
|
|
|
|
bindkey "^[[A" up-line-or-beginning-search # Up
|
|
|
|
bindkey "^[^[[A" up-line-or-beginning-search # Up
|
|
|
|
bindkey "^[[B" down-line-or-beginning-search # Down
|
|
|
|
bindkey "^[^[[B" down-line-or-beginning-search # Down
|
|
|
|
|
|
|
|
zstyle ':completion:*:sudo::' environ PATH="/sbin:/usr/sbin:$PATH" HOME="/root"
|
|
|
|
zstyle ':completion:*' matcher-list '' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'r:|[._-]=** r:|=**' 'l:|=* r:|=*'
|
2017-01-17 02:02:28 +00:00
|
|
|
zstyle :compinstall filename "$HOME/.zshrc"
|
2016-03-31 02:03:55 +00:00
|
|
|
|
|
|
|
autoload -U compinit ; compinit
|
|
|
|
|
2016-03-31 18:21:23 +00:00
|
|
|
plugins=(command-not-found history-substring-search sudo zsh-autosuggestions zsh-completions)
|
2016-03-31 02:03:55 +00:00
|
|
|
source $ZSH/oh-my-zsh.sh
|
2017-01-17 02:02:28 +00:00
|
|
|
source $ZSH/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
2016-03-31 02:03:55 +00:00
|
|
|
|
|
|
|
ZSH_AUTOSUGGEST_CLEAR_WIDGETS=("${(@)ZSH_AUTOSUGGEST_CLEAR_WIDGETS:#(up|down)-line-or-history}")
|
|
|
|
ZSH_AUTOSUGGEST_CLEAR_WIDGETS+=(history-substring-search-up history-substring-search-down)
|
|
|
|
|
|
|
|
ZSH_HIGHLIGHT_STYLES[default]='fg=blue'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[unknown-token]='fg=red,bold'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[reserved-word]='fg=yellow'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[alias]='fg=63'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[suffix-alias]='fg=green,underline'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[builtin]='fg=63'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[function]='fg=63'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[command]='fg=63'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[precommand]='fg=63'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[commandseparator]='fg=blue'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[hashed-command]='fg=green'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[path]='fg=63,underline'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[path_prefix]='fg=yellow,bold'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[path_approx]='fg=red,bold,underline'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[globbing]='fg=red'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[history-expansion]='fg=blue'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[single-hyphen-option]='fg=blue'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[double-hyphen-option]='fg=blue'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[back-quoted-argument]='none'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[single-quoted-argument]='fg=yellow'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[double-quoted-argument]='fg=yellow'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[dollar-quoted-argument]='fg=yellow'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[dollar-double-quoted-argument]='fg=cyan'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[back-double-quoted-argument]='fg=cyan'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[back-dollar-quoted-argument]='fg=cyan'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[assign]='none'
|
|
|
|
ZSH_HIGHLIGHT_STYLES[redirection]='none'
|
|
|
|
|
2016-03-31 02:10:26 +00:00
|
|
|
source $DOTFILES/aliases
|
2016-10-04 08:50:16 +00:00
|
|
|
|
|
|
|
# OPAM configuration
|
|
|
|
. /home/frebib/.opam/opam-init/init.zsh > /dev/null 2> /dev/null || true
|