summaryrefslogtreecommitdiff
path: root/home/xyz/.config/readline/inputrc
blob: a666b0919994ace399b7ced81d5a0e576a68afd2 (plain)
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
$include /etc/inputrc

# from archwiki realine
# Color files by types
# Note that this may cause completion text blink in some terminals (e.g. xterm).
set colored-stats On
# Append char to indicate type
set visible-stats On
# Mark symlinked directories
set mark-symlinked-directories On
# Color the common prefix
set colored-completion-prefix On
# Color the common prefix in menu-complete
set menu-complete-display-prefix On

# https://github.com/LukeSmithxyz/voidrice/blob/2440ad83e9e9cf2f927efbaef618513e0df3cbda/.config/shell/inputrc
set editing-mode vi
$if mode=vi

	set show-mode-in-prompt on
	set vi-ins-mode-string \1\e[6 q\2
	set vi-cmd-mode-string \1\e[2 q\2

	#set keymap vi-command
	# these are for vi-command mode
	#Control-l: clear-screen
	#Control-a: beginning-of-line

	set keymap vi-insert
	# these are for vi-insert mode
	Control-l: clear-screen
	#Control-a: beginning-of-line

$endif