summaryrefslogtreecommitdiffstats
path: root/inputrc
diff options
context:
space:
mode:
authorMatthew Lemon <chaffinach+git@protonmail.ch>2022-05-02 20:19:33 +0100
committerMatthew Lemon <chaffinach+git@protonmail.ch>2022-05-02 20:19:33 +0100
commit36d22ff490d1951937841bf9fb9727da410b43a5 (patch)
tree2788e75d5d39be6926c6b7be8bfdbbd623a8b7cc /inputrc
parent433757bf898f65009cb9d62497d7fda3e0a504a2 (diff)
adding some niceties for openbsd 2022
Diffstat (limited to '')
-rw-r--r--inputrc56
1 files changed, 56 insertions, 0 deletions
diff --git a/inputrc b/inputrc
new file mode 100644
index 0000000..2bd9a9d
--- /dev/null
+++ b/inputrc
@@ -0,0 +1,56 @@
+#cito M:600 O:1000 G:1000 T:$HOME/.inputrc
+#------------------------------------------------------------------------------
+# Project Name - BashConfig/misc/.inputrc
+# Started On - Tue 16 Jan 22:16:00 GMT 2018
+# Last Change - Sat 7 Nov 00:27:05 GMT 2020
+# Author E-Mail - terminalforlife@yahoo.com
+# Author GitHub - https://github.com/terminalforlife
+#------------------------------------------------------------------------------
+
+set bell-style audible
+set colored-stats On
+set comment-begin '#'
+set completion-ignore-case On
+set completion-prefix-display-length 0
+set completion-query-items 50
+set convert-meta On
+set disable-completion Off
+set editing-mode emacs
+set echo-control-characters Off
+set enable-keypad Off
+set enable-meta-key On
+set expand-tilde Off
+set history-preserve-point Off
+set history-size 1000
+set horizontal-scroll-mode Off
+set input-meta Off
+set isearch-terminators 'C-[C-J'
+set keymap emacs
+set keyseq-timeout 500
+set mark-directories On
+set mark-modified-lines Off
+set mark-symlinked-directories On
+set match-hidden-files Off
+set menu-complete-display-prefix Off
+set output-meta Off
+set page-completions Off
+set print-completions-horizontally On
+set revert-all-at-newline Off
+set show-all-if-ambiguous On
+set show-all-if-unmodified On
+set show-mode-in-prompt Off
+set skip-completed-text On
+set visible-stats On
+
+$if mode=emacs
+ "\e[1~": beginning-of-line
+ "\e[4~": end-of-line
+ "\e[3~": delete-char
+ "\e[2~": quoted-insert
+ "\e[1;5C": forward-word
+ "\e[1;5D": backward-word
+ "\e[5C": forward-word
+ "\e[5D": backward-word
+ "\e\e[C": forward-word
+ "\e\e[D": backward-word
+$endif