aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/zsh/keybindings.zsh
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2019-09-09 07:02:56 +0200
committerneodarz <neodarz@neodarz.net>2019-09-09 07:02:56 +0200
commit9f810eec6a98011b551c40f8686b88a4fb0b0862 (patch)
tree7ebe73f5cd8388c6bf46ce78b7033bc18efc6687 /dotfiles/zsh/keybindings.zsh
parent0a7be29623c8e722107b2d53fe524c6d65f70588 (diff)
downloaddotfiles_dotdrop-9f810eec6a98011b551c40f8686b88a4fb0b0862.tar.xz
dotfiles_dotdrop-9f810eec6a98011b551c40f8686b88a4fb0b0862.zip
Add zsh config
Diffstat (limited to 'dotfiles/zsh/keybindings.zsh')
-rwxr-xr-xdotfiles/zsh/keybindings.zsh56
1 files changed, 56 insertions, 0 deletions
diff --git a/dotfiles/zsh/keybindings.zsh b/dotfiles/zsh/keybindings.zsh
new file mode 100755
index 0000000..c3e2784
--- /dev/null
+++ b/dotfiles/zsh/keybindings.zsh
@@ -0,0 +1,56 @@
+# ██
+# ░██
+# ██████ ██████░██
+# ░░░░██ ██░░░░ ░██████
+# ██ ░░█████ ░██░░░██
+# ██ ░░░░░██░██ ░██
+# ██████ ██████ ░██ ░██
+# ░░░░░░ ░░░░░░ ░░ ░░
+#
+# ▓▓▓▓▓▓▓▓▓▓
+# ░▓ author ▓ xero <x@xero.nu>
+# ░▓ code ▓ http://code.xero.nu/dotfiles
+# ░▓ mirror ▓ http://git.io/.files
+# ░▓▓▓▓▓▓▓▓▓▓
+# ░░░░░░░░░░
+#
+#█▓▒░ keybindings
+bindkey -v
+typeset -A key
+
+key[Home]=${terminfo[khome]}
+key[End]=${terminfo[kend]}
+key[Insert]=${terminfo[kich1]}
+key[Delete]=${terminfo[kdch1]}
+key[Up]=${terminfo[kcuu1]}
+key[Down]=${terminfo[kcud1]}
+key[Left]=${terminfo[kcub1]}
+key[Right]=${terminfo[kcuf1]}
+key[PageUp]=${terminfo[kpp]}
+key[PageDown]=${terminfo[knp]}
+
+[[ -n "${key[Home]}" ]] && bindkey "${key[Home]}" beginning-of-line
+[[ -n "${key[End]}" ]] && bindkey "${key[End]}" end-of-line
+[[ -n "${key[Insert]}" ]] && bindkey "${key[Insert]}" overwrite-mode
+[[ -n "${key[Delete]}" ]] && bindkey "${key[Delete]}" delete-char
+[[ -n "${key[Up]}" ]] && bindkey "${key[Up]}" up-line-or-history
+[[ -n "${key[Down]}" ]] && bindkey "${key[Down]}" down-line-or-history
+[[ -n "${key[Left]}" ]] && bindkey "${key[Left]}" backward-char
+[[ -n "${key[Right]}" ]] && bindkey "${key[Right]}" forward-char
+[[ -n "${key[PageUp]}" ]] && bindkey "${key[PageUp]}" beginning-of-buffer-or-history
+[[ -n "${key[PageDown]}" ]] && bindkey "${key[PageDown]}" end-of-buffer-or-history
+
+if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then
+ function zle-line-init () {
+ printf '%s' "${terminfo[smkx]}"
+ }
+ function zle-line-finish () {
+ printf '%s' "${terminfo[rmkx]}"
+ }
+ zle -N zle-line-init
+ zle -N zle-line-finish
+fi
+
+# Navigate words with ctrl+arrow keys
+bindkey '^[[1;5D' backward-word
+bindkey '^[[1;5C' forward-word