152 lines
2.9 KiB
Plaintext
152 lines
2.9 KiB
Plaintext
# name: Selects default key bindings
|
|
# type: enum
|
|
# options: bash,windows
|
|
clink.default_bindings = windows
|
|
|
|
# name: Controls what startup logo to show
|
|
# type: enum
|
|
# options: none,full,short
|
|
clink.logo = none
|
|
|
|
# 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 38;5;172
|
|
|
|
# name: Argmatcher color
|
|
# type: color
|
|
color.argmatcher = sgr 1;38;5;40
|
|
|
|
# name: Color for home dir tilde
|
|
# type: color
|
|
color.autoexpandtilde = bright cyan
|
|
|
|
# name: Shell command completions
|
|
# type: color
|
|
color.cmd = bold
|
|
|
|
# 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;135
|
|
|
|
# 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: Color for command divider line
|
|
# type: color
|
|
color.divider_line = sgr 30;48;5;25
|
|
|
|
# name: Color for command end divider line
|
|
# type: color
|
|
color.divider_line_end = sgr 38;5;25
|
|
|
|
# name: Doskey completions
|
|
# type: color
|
|
color.doskey = sgr 1;38;5;75
|
|
|
|
# name: Color for escape for plain tilde
|
|
# type: color
|
|
color.escapetilde = bright cyan on blue
|
|
|
|
# name: Color for executable command word
|
|
# type: color
|
|
color.executable = sgr 1;38;5;33
|
|
|
|
# name: Filtered completion color
|
|
# type: color
|
|
color.filtered = bold
|
|
|
|
# name: Flag color
|
|
# type: color
|
|
color.flag = sgr 38;5;117
|
|
|
|
# name: Hidden file completions
|
|
# type: color
|
|
color.hidden = sgr 38;5;160
|
|
|
|
# name: History expansion color
|
|
# type: color
|
|
color.histexpand = sgr 97;48;5;55
|
|
|
|
# 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;214
|
|
|
|
# name: For user-interaction prompts
|
|
# type: color
|
|
color.interact = bold
|
|
|
|
# name: Color for 'rem lua:' prefix
|
|
# type: color
|
|
color.luaprefix = bright cyan on blue
|
|
|
|
# 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 7
|
|
|
|
# name: Selection color
|
|
# type: color
|
|
color.selection = sgr 38;5;16;48;5;179
|
|
|
|
# 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: History item timestamps
|
|
# type: enum
|
|
# options: off,save,show
|
|
history.time_stamp = show
|
|
|
|
# name: Expand envvars when completing
|
|
# type: boolean
|
|
match.expand_envvars = True
|
|
|
|
# name: Try substring if no prefix matches
|
|
# type: boolean
|
|
match.substring = True
|
|
|
|
# name: Show a tip when Clink starts
|
|
# type: boolean
|
|
tips.enable = False
|
|
|
|
# name: Changes the prefix of the aliases
|
|
# type: string
|
|
zoxide.cmd = z
|
|
|