Ubuntu Pastebin

Paste from petter at Fri, 12 May 2017 08:57:33 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
$include /etc/inputrc

set input-meta on
set output-meta on
set convert-meta off

# visible bell
set bell-style visible

# Ctrl-Right arrow
#"\e[1;5C": forward-word
# Ctrl-Left arrow
#"\e[1;5D": backward-word

"\C-x\C-k": kill-whole-line

$if term=screen
"\e[7~": beginning-of-line
"\e[8~": end-of-line
"\eOC": forward-word                                                         
"\eOD": backward-word
$endif

# Ignore case on tab complete
set completion-ignore-case on

# history search
"\e[A":history-search-backward
"\e[B":history-search-forward

set show-all-if-ambiguous off
set visible-stats on
set colored-stats on

# bell
set bell-style audible
Download as text