rc/zshrc

236 lines
8 KiB
Bash
Raw Normal View History

# zshrc originaly inspired by ECP VIA's debian course file,
# and David_5-1's numerous improvements
#
# Regularly improved and tweaked by lhark since 2015
#
# Uses the following plugins:
# https://github.com/zsh-users/zsh-syntax-highlighting
# https://github.com/zsh-users/zsh-autosuggestions
2015-06-03 21:39:41 +00:00
2018-07-19 18:55:05 +00:00
# Uncomment this line for perfomance analysis
#zmodload zsh/zprof
2020-02-19 17:14:43 +00:00
export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/3.8/bin:/usr/local/bin:/usr/local/sbin:/usr/sbin:/sbin"
2019-11-18 18:31:07 +00:00
# Get rc dir path
2020-02-19 17:14:43 +00:00
#RC_PATH=$(dirname "$(readlink -f ${(%):-%x})")
# https://stackoverflow.com/questions/9901210/bash-source0-equivalent-in-zsh#comment45012039_23259585
RC_PATH=$(dirname "$(realpath -- "${(%):-%x}")")
export PATH="$PATH:$RC_PATH/bin:~/bin:/opt/cuda/bin:~/.cargo/bin:~/go/bin"
2019-11-18 18:31:07 +00:00
2018-11-23 18:40:17 +00:00
# Add ruby gems to path
if which ruby >/dev/null && which gem >/dev/null; then
PATH="$(ruby -r rubygems -e 'puts Gem.user_dir')/bin:$PATH"
fi
2020-02-19 17:14:43 +00:00
# Add emscripten to path
if [ -d "$HOME/emsdk" ]; then
PATH="$PATH:~/emsdk:~/emsdk/node/12.9.1_64bit/bin:~/emsdk/fastcomp/emscripten" #:~/emsdk/fastcomp/emscripten/tools"
fi
2019-12-25 15:59:43 +00:00
export BROWSER='/usr/bin/w3m -T "text/html"'
2016-10-27 07:51:43 +00:00
export EDITOR=/usr/bin/vim
2019-12-25 15:59:43 +00:00
export GPG_TTY="$(tty)"
2016-10-27 07:51:43 +00:00
# Prevent mime associations by wine
2018-02-26 08:17:54 +00:00
export WINEPREFIX="$HOME/.wine"
2016-10-27 07:51:43 +00:00
export WINEDLLOVERRIDES="winemenubuilder.exe=d"
2017-03-14 14:36:21 +00:00
export CUDA_ROOT=/opt/cuda
2017-09-11 17:10:39 +00:00
# Android SDK setup
2018-11-23 18:40:17 +00:00
export ANDROID_HOME="/opt/android-sdk"
2017-09-11 17:10:39 +00:00
export PATH="$PATH:$ANDROID_HOME/tools/bin:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools"
# Use Wayland when available
export MOZ_ENABLE_WAYLAND=1
2015-06-03 21:39:41 +00:00
# Configuration for virtualenv
export WORKON_HOME=$HOME/.virtualenvs
2018-07-19 18:55:05 +00:00
source /usr/bin/virtualenvwrapper_lazy.sh > /dev/null 2>&1
# disables prompt mangling in virtual_env/bin/activate
export VIRTUAL_ENV_DISABLE_PROMPT=1
2015-11-07 17:05:17 +00:00
2016-04-28 20:45:30 +00:00
# Configuration for ROS
2016-05-14 16:28:56 +00:00
source /opt/ros/indigo/setup.zsh > /dev/null 2>&1
export PYTHONPATH=/opt/ros/indigo/lib/python2.7/site-packages:$PYTHONPATH
export PKG_CONFIG_PATH="/opt/ros/indigo/lib/pkgconfig:$PKG_CONFIG_PATH"
2016-04-28 20:45:30 +00:00
# Import utility functions
# Colors needed for the prompt definition
autoload -U colors
colors
. "$RC_PATH/functions"
. "$RC_PATH/aliases"
. "$RC_PATH/prompt"
# Setup colors for GNU ls
# TODO: check for GNU ls
eval "$(dircolors -b)"
2016-04-28 20:45:30 +00:00
# Check for rc updates in the background
(check_rc_update&) 2> /dev/null
2015-06-03 21:39:41 +00:00
# Check for system updates inthe background
(check_sys_update&) 2> /dev/null
2015-11-07 17:05:17 +00:00
2016-03-30 15:27:36 +00:00
# Term specific hacks
case $TERM in
*kitty)
preexec () {
print -n "\e]0;kitty - $1 - ${HOST} - ${PWD}\a"
}
alias ssh='ssh_kitty'
;;
2016-03-30 15:27:36 +00:00
xterm*)
preexec () {
print -n "\e]0;xterm - $1 - ${HOST} - ${PWD}\a"
2016-03-30 15:27:36 +00:00
}
;;
# Fix broken ssh with st
st*)
2016-04-28 20:45:30 +00:00
preexec () {
print -n "\e]0;st - $1 - ${HOST} - ${PWD}\a"
2016-04-28 20:45:30 +00:00
}
alias ssh='TERM=xterm ssh -A'
2016-03-30 15:27:36 +00:00
;;
esac
# Prevent CTRL-S from locking the terminal
stty -ixon
2016-03-30 15:27:36 +00:00
2016-10-27 07:51:43 +00:00
###############
# ZSH options #
###############
2015-06-03 21:39:41 +00:00
# man zshoptions
unsetopt rm_star_silent # Ask before running 'rm *' or 'rm path/*'
unsetopt promptsubst # ZLE is handling prompt recalculation
setopt clobber # Allow file overwrite with > instead of >|
setopt chase_links # cd resolves symbolic links
setopt hist_verify # check the result of !! before executing
2016-10-27 07:51:43 +00:00
setopt hist_ignore_all_dups # Only keep last version of duplicate command
setopt sharehistory # Import new cmds from hist file & append typed cmds
setopt hist_ignore_space # Ignore cmds with leading space
setopt autopushd # cd pushes old dir to dir stack
setopt pushdsilent # Silent pushd & popd
setopt pushdtohome # pushd = pushd $HOME
setopt pushdignoredups
setopt pushdminus # This reverts the +/- operators for pushd.
setopt nobeep # Beeps are a pain
2016-10-27 07:51:43 +00:00
EXPORTTIME=0 # (Disabled) Display command execution time
HISTSIZE=10000000
SAVEHIST=10000000
HISTFILE=~/.history
HISTTIMEFORMAT="%d/%m %H:%M:%S "
2015-11-07 17:05:17 +00:00
2015-06-03 21:39:41 +00:00
######################
# Load ZSH functions #
######################
zmodload zsh/complist
autoload -U compinit promptinit
compinit
colors
autoload -U zsh-mime-setup
2016-10-27 07:51:43 +00:00
######################
# Completion options #
######################
2015-11-07 17:05:17 +00:00
unsetopt glob_dots # (disabled) Do not require a leading '.' in a filename to be matched explicitly.
setopt auto_remove_slash # Auto remove slash at the end of autocomp when appropriate
setopt complete_in_word # If the cursor is inside a word, completion is done from both ends
setopt extended_glob # Treat '#', '~' and '^' chars as part of patterns for filenames, etc.
setopt glob_complete # When the current word has a glob pattern, do not insert all the words resulting from the expansion
unsetopt null_glob # Error when no glob match found, instead of deleting
# man zshmodules (zstyle)
# man zshcompsys (styles)
# man zshcompwid (COMPLETION MATCHING CONTROL)
#zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}'
# Max errors allowed while attempting completion
2015-06-03 21:39:41 +00:00
zstyle ':completion:*' max-errors 3 numeric
# Disable legacy completion
2015-06-03 21:39:41 +00:00
zstyle ':completion:*' use-compctl false
2015-11-07 17:07:29 +00:00
zstyle ':completion:*' auto-description 'specify: %d'
#zstyle ':completion:*' completer _expand _complete _correct _approximate
zstyle ':completion:*' completer _complete _correct _approximate
2015-11-07 17:07:29 +00:00
zstyle ':completion:*' format 'Completing %d'
zstyle ':completion:*' group-name ''
# Start menu style completion if there are more than 2 matches
2015-11-07 17:07:29 +00:00
zstyle ':completion:*' menu select=2
zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS}
zstyle ':completion:*' list-colors "=(#b) #([0-9]#)*=36=31"
2015-11-07 17:07:29 +00:00
zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}' 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=* l:|=*'
zstyle ':completion:*' menu select=long
zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s
zstyle ':completion:*' verbose true
# Add colors to the completion menu, eg. kill -9 <tab><tab>
2016-10-27 07:51:43 +00:00
zstyle ':completion:*:*:kill:*:processes' list-colors "=(#b) #([0-9]#)*=36=31"
zstyle ':completion:*:processes' command 'ps -au$USER -o pid,time,cmd|grep -v "ps -au$USER -o pid,time,cmd"'
# Separate man page sections. Neat.
zstyle ':completion:*:manuals' separate-sections true
# Create completions cache
# Useful for slow completions like with package managers
2016-10-27 07:51:43 +00:00
zstyle ':completion:*' use-cache on
zstyle ':completion:*' cache-path ~/.zs
# Enable ssh completion for kitty ssh
compdef ssh_kitty=ssh
2016-10-27 07:51:43 +00:00
################
# Prompt setup #
################
2016-10-27 07:51:43 +00:00
autoload -Uz vcs_info
promptinit
# Set timeout to 0.1s for switching to normal mode (might interfere with other apps)
export KEYTIMEOUT=1
zle -N zle-line-init
zle -N zle-keymap-select
2016-10-27 07:51:43 +00:00
##################
# Keyboard setup #
##################
bindkey -v # Vim type keybinds for ZLE (line editing)
2015-06-03 21:39:41 +00:00
# Handling of special keys
# CTRL+V then press the key to display the code
2015-06-03 21:39:41 +00:00
typeset -A key
# CTRL + arrows keys
2015-06-03 21:39:41 +00:00
bindkey ";5D" beginning-of-line
bindkey ";5C" end-of-line
bindkey ";5A" up-line-or-history
bindkey ";5B" down-line-or-history
bindkey "^[[1;5D" beginning-of-line
bindkey "^[[1;5C" end-of-line
# Vim style incremental search
bindkey -M vicmd "/" history-incremental-search-backward
bindkey -M vicmd "?" history-incremental-search-forward
# Push the current command to the stack. ZLE will pop it on the next prompt
bindkey -M vicmd "q" push-line
2015-06-03 21:39:41 +00:00
# Page Up/Down
bindkey "^[[5~" history-beginning-search-backward
bindkey "^[[6~" history-beginning-search-forward
# CTRL + Page UP/Down
bindkey "^[[5;5~" beginning-of-buffer-or-history
bindkey "^[[6;5~" end-of-buffer-or-history
# Begin / End (numpad)
2017-03-14 14:36:21 +00:00
bindkey "^[[H" beginning-of-line
2015-06-03 21:39:41 +00:00
bindkey "^[[4~" end-of-line
# Begin / End
2015-06-03 21:39:41 +00:00
bindkey "^[OH" beginning-of-line
bindkey "^[OF" end-of-line
bindkey "^[[F" end-of-line
2015-10-22 09:58:49 +00:00
# Delete
bindkey "[3~" delete-char
2015-11-24 17:58:10 +00:00
# Shift-Tab
bindkey "^[[Z" reverse-menu-complete
2015-06-03 21:39:41 +00:00
2015-11-07 17:08:13 +00:00
2019-12-25 15:59:43 +00:00
ZSH_AUTOSUGGEST_STRATEGY=(history)
2019-11-18 14:15:16 +00:00
source "${RC_PATH}/zsh-autosuggestions/zsh-autosuggestions.zsh"
2015-11-07 17:08:13 +00:00
# ZSH syntax highlighting : /!\ keep at the bottom !
source "${RC_PATH}/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh"