127 lines
2.6 KiB
Plaintext
127 lines
2.6 KiB
Plaintext
# name: Enable automatic suggestions
|
|
# type: boolean
|
|
autosuggest.enable = True
|
|
|
|
# name: Selects default key bindings
|
|
# type: enum
|
|
# options: bash,windows
|
|
clink.default_bindings = windows
|
|
|
|
# name: Use GUI popup windows
|
|
# type: boolean
|
|
clink.gui_popups = False
|
|
|
|
# name: Pressing Ctrl-D exits session
|
|
# type: boolean
|
|
cmd.ctrld_exits = False
|
|
|
|
# name: Argument color
|
|
# type: color
|
|
color.arg = bold
|
|
|
|
# name: Argument info color
|
|
# type: color
|
|
color.arginfo = sgr 1;38;5;172
|
|
|
|
# name: Argmatcher color
|
|
# type: color
|
|
color.argmatcher = sgr 1;38;5;40
|
|
|
|
# name: Shell command completions
|
|
# type: color
|
|
color.cmd = sgr 1;38;5;231
|
|
|
|
# name: Color for < and > redirection symbols
|
|
# type: color
|
|
color.cmdredir = sgr 38;5;172
|
|
|
|
# name: Color for & and | command separators
|
|
# type: color
|
|
color.cmdsep = sgr 38;5;214
|
|
|
|
# name: Color for comment row
|
|
# type: color
|
|
color.comment_row = sgr 38;5;87;48;5;18
|
|
|
|
# name: Description completion color
|
|
# type: color
|
|
color.description = sgr 38;5;39
|
|
|
|
# name: Doskey completions
|
|
# type: color
|
|
color.doskey = sgr 1;38;5;75
|
|
|
|
# name: Color for executable command word
|
|
# type: color
|
|
color.executable = sgr 38;5;33
|
|
|
|
# name: Filtered completion color
|
|
# type: color
|
|
color.filtered = sgr 38;5;231
|
|
|
|
# name: Flag color
|
|
# type: color
|
|
color.flag = sgr 38;5;117
|
|
|
|
# name: Hidden file completions
|
|
# type: color
|
|
color.hidden = sgr 38;5;160
|
|
|
|
# name: Horizontal scroll marker color
|
|
# type: color
|
|
color.horizscroll = sgr 38;5;16;48;5;30
|
|
|
|
# name: Input text color
|
|
# type: color
|
|
color.input = sgr 38;5;222
|
|
|
|
# name: For user-interaction prompts
|
|
# type: color
|
|
color.interact = bold
|
|
|
|
# name: Message area color
|
|
# type: color
|
|
color.message = default
|
|
|
|
# name: Readonly file completions
|
|
# type: color
|
|
color.readonly = sgr 38;5;28
|
|
|
|
# name: Selected completion color
|
|
# type: color
|
|
color.selected_completion = sgr 38;5;16;48;5;254
|
|
|
|
# name: Selection color
|
|
# type: color
|
|
color.selection = sgr 38;5;16;48;5;179
|
|
|
|
# name: Color for suggestion text
|
|
# type: color
|
|
color.suggestion = sgr 38;5;239
|
|
|
|
# name: Unexpected argument color
|
|
# type: color
|
|
color.unexpected = default
|
|
|
|
# name: Color for unrecognized command word
|
|
# type: color
|
|
color.unrecognized = sgr 38;5;203
|
|
|
|
# name: The number of history lines to save
|
|
# type: integer
|
|
history.max_lines = 25000
|
|
|
|
# name: Expand envvars when completing
|
|
# type: boolean
|
|
match.expand_envvars = True
|
|
|
|
# name: Try substring if no prefix matches
|
|
# type: boolean
|
|
match.substring = True
|
|
|
|
# name: Controls when past prompts are collapsed
|
|
# type: enum
|
|
# options: off,always,same_dir
|
|
prompt.transient = off
|
|
|