summaryrefslogtreecommitdiff
path: root/.zshrc
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2020-10-03 19:27:15 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2020-10-03 19:27:15 -0400
commite371d9edd474bcf89cf5d462eaccb8638900b390 (patch)
treeed07118f5c514a55f23a779a1507640e46fd9ed2 /.zshrc
Initial commit
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc101
1 files changed, 101 insertions, 0 deletions
diff --git a/.zshrc b/.zshrc
new file mode 100644
index 0000000..feb342c
--- /dev/null
+++ b/.zshrc
@@ -0,0 +1,101 @@
+# ______ _____ _ _
+# |___ // ____| | | |
+# / /| (___ | |__| |
+# / / \___ \| __ |
+# / /__ ____) | | | |
+# /_____|_____/|_| |_|
+#
+
+# The following lines were added by compinstall
+zstyle ':completion:*' completer _complete _ignored _correct _approximate
+zstyle ':completion:*' file-sort name
+zstyle ':completion:*' matcher-list '' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'r:|[._-,]=** r:|=**'
+zstyle ':completion:*' preserve-prefix '//[^/]##/'
+zstyle ':completion:*' squeeze-slashes true
+zstyle :compinstall filename '/home/master/.zshrc'
+
+autoload -Uz compinit
+zstyle ':completion:*' menu select
+zmodload zsh/complist
+
+compinit
+# End of lines added by compinstall
+
+# Vim keys in tab complete menu:
+bindkey -M menuselect 'h' vi-backward-char
+bindkey -M menuselect 'k' vi-up-line-or-history
+bindkey -M menuselect 'l' vi-forward-char
+bindkey -M menuselect 'j' vi-down-line-or-history
+
+export KEYTIMEOUT=1
+
+# Change cursor shape for different vi modes.
+function zle-keymap-select {
+ if [[ ${KEYMAP} == vicmd ]] ||
+ [[ $1 = 'block' ]]; then
+ echo -ne '\e[1 q'
+
+ elif [[ ${KEYMAP} == main ]] ||
+ [[ ${KEYMAP} == viins ]] ||
+ [[ ${KEYMAP} = '' ]] ||
+ [[ $1 = 'beam' ]]; then
+ echo -ne '\e[5 q'
+ fi
+}
+zle -N zle-keymap-select
+
+zle-line-init() {
+ zle -K viins # initiate `vi insert` as keymap (can be removed if `bindkey -V` has been set elsewhere)
+ echo -ne "\e[5 q"
+}
+zle -N zle-line-init
+
+# Use beam shape cursor on startup.
+echo -ne '\e[5 q'
+# Use beam shape cursor for each new prompt.
+preexec() { echo -ne '\e[5 q' ;}
+
+
+# Lines configured by zsh-newuser-install
+HISTFILE=~/.cache/zsh-history
+HISTSIZE=1000
+SAVEHIST=10000
+setopt appendhistory autocd extendedglob nomatch
+unsetopt beep notify
+bindkey -v
+# End of lines configured by zsh-newuser-install
+
+# Git current branch setup
+autoload -Uz vcs_info
+precmd_vcs_info() { vcs_info }
+precmd_functions+=( precmd_vcs_info )
+setopt prompt_subst
+
+# Prompt theme
+PROMPT=" %B%F{blue}π %b%F{yellow}"
+RPROMPT="\$vcs_info_msg_0_ %B%F{magenta}(%B%F{cyan}%1/%B%F{magenta})"
+
+zstyle ':vcs_info:git:*' formats '%b'
+
+# Loading shortcuts made by aliasgen and shortcutgen
+source $HOME/.cache/zsh-aliases*
+source $HOME/.cache/zsh-shortcuts
+source $HOME/.cache/shell-vars
+
+# Making ranger useful:
+alias ranger='ranger --choosedir=$HOME/.rangerdir; LASTDIR=`cat $HOME/.rangerdir`; cd "$LASTDIR"'
+
+# Vifm with sensible cd option
+vicd()
+{
+ local dst="$(command vifmrun --choose-dir - "$@")"
+ [[ "$dst" == "" ]] && \
+ echo 'Directory picking cancelled/failed' && \
+ return 1 \
+ || cd "$dst"
+}
+
+# Load zsh-syntax-highlighting; should be last.
+source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
+
+eval $(thefuck --alias)