aboutsummaryrefslogtreecommitdiffstats
path: root/.inputrc
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@gmail.com>2016-01-06 19:07:26 +0800
committerAaron LI <aaronly.me@gmail.com>2016-01-06 19:07:26 +0800
commit258b5a48933b2c34dcfb042029d477ba285071d7 (patch)
treedfea371b67fe8f5e5c1f08d89cd96b8f759b0fcb /.inputrc
parent4ddf40c8fe543d07738e5368194ebcb9cf06b136 (diff)
downloaddotfiles-258b5a48933b2c34dcfb042029d477ba285071d7.tar.bz2
Add .Xmodmap & .inputrc; Other small updates.
* .Xmodmap: disable CapsLock key * .inputrc: vi-style bindings for readline
Diffstat (limited to '.inputrc')
-rw-r--r--.inputrc30
1 files changed, 30 insertions, 0 deletions
diff --git a/.inputrc b/.inputrc
new file mode 100644
index 0000000..7d93f5d
--- /dev/null
+++ b/.inputrc
@@ -0,0 +1,30 @@
+#
+# ~/.inputrc
+#
+# readline configurations
+#
+# Reference:
+# [1] ArchWiki - Readline
+# https://wiki.archlinux.org/index.php/Readline
+#
+# Aaron LI
+# 2015-09-26
+#
+
+#$include /etc/inputrc
+
+# vi mode
+set editing-mode vi
+$if mode=vi
+set keymap vi-command
+# these are for vi-command mode
+"\e[A": history-search-backward
+"\e[B": history-search-forward
+set keymap vi-insert
+# these are for vi-insert mode
+"\e[A": history-search-backward
+"\e[B": history-search-forward
+$endif
+
+
+# vim: set ts=8 sw=4 tw=0 fenc=utf-8 ft=readline: #