-
Notifications
You must be signed in to change notification settings - Fork 0
/
inputrc
51 lines (33 loc) · 908 Bytes
/
inputrc
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Bindings {{{
# Expand history with Ctrl + Space
Control-Space: magic-space
# Complete items with Insert
"\e[2~": menu-complete
# }}}
# Settings {{{
# Disable the bell
set bell-style none
# Enable file colors
set colored-stats on
# Enable case-insensitive completion
set completion-ignore-case on
# Don't ask to show all completions
set completion-query-items -1
# Set the maximum number of history entries
set history-size 500
# Disable completion pages
set page-completions off
# Disable bracketed paste
set enable-bracketed-paste off
# Print completions horizontally
set print-completions-horizontally on
# Show ambiguous completions immediately
set show-all-if-ambiguous on
# Show full completions immediately
set show-all-if-unmodified on
# Skip completed text after the cursor
set skip-completed-text on
# Show file type characters
set visible-stats on
# }}}
# vim:fdm=marker:fdl=1: