From b209dd98527fd357e716d44ec4adb430504eae56 Mon Sep 17 00:00:00 2001 From: Paul Iannetta Date: Mon, 19 Nov 2018 00:51:01 +0100 Subject: zsh dot files --- .config/zsh/.zshrc | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 .config/zsh/.zshrc (limited to '.config/zsh/.zshrc') diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc new file mode 100755 index 0000000..04da72e --- /dev/null +++ b/.config/zsh/.zshrc @@ -0,0 +1,32 @@ +# +# This file is based on the configuration written by +# Bruno Bonfils, +# Written since summer 2001 + +# colors +eval `dircolors $ZDOTDIR/colors` + +autoload -U zutil +autoload -U compinit +autoload -U complist + +bindkey "\e[2~" overwrite-mode # Ins +bindkey "\e[3~" delete-char # Delete +bindkey '\eOH' beginning-of-line +bindkey '\eOF' end-of-line + +bindkey "${terminfo[khome]}" beginning-of-line +bindkey "${terminfo[kend]}" end-of-line + +# Activation +compinit + +# Resource files +for file in $ZDOTDIR/rc/*.rc; do + source $file +done + +# plugin files +for file in $ZDOTDIR/plugin/*.plugin; do + source $file +done -- cgit v1.2.3-54-g00ecf