Add explanation for configuration settings
This commit is contained in:
parent
846c2d0325
commit
5cb3593df4
1 changed files with 10 additions and 1 deletions
11
imagrc.toml
11
imagrc.toml
|
@ -11,11 +11,20 @@
|
||||||
#
|
#
|
||||||
[ui.cli]
|
[ui.cli]
|
||||||
|
|
||||||
# History file path for readline
|
# History file path for readline. Will be created by imag if it does not exist.
|
||||||
readline_history_file = "/tmp/readline.history"
|
readline_history_file = "/tmp/readline.history"
|
||||||
|
|
||||||
|
# Number of lines to safe in the history file
|
||||||
readline_history_size = 100
|
readline_history_size = 100
|
||||||
|
|
||||||
|
# Ignore duplicated lines
|
||||||
readline_history_ignore_dups = true
|
readline_history_ignore_dups = true
|
||||||
|
|
||||||
|
# Tell if lines which begin with a space character are saved or not in the
|
||||||
|
# history list.
|
||||||
readline_history_ignore_space = true
|
readline_history_ignore_space = true
|
||||||
|
|
||||||
|
# The prompt string to use
|
||||||
readline_prompt = ">> "
|
readline_prompt = ">> "
|
||||||
|
|
||||||
[store]
|
[store]
|
||||||
|
|
Loading…
Reference in a new issue