Default parameters
Note that this document omits the initial :
. To change the value of a default parameter, you can do something like this:
(param/set :root :default-frame "big-hex")
animate animations color-error color-info color-map color-warn data-directory default-frame default-shell input-find-active-bg input-find-active-fg input-find-inactive-bg input-find-inactive-fg input-preview-border input-preview-border-fg input-prompt-bg input-prompt-fg num-search-workers remove-pane-on-exit replay-copy-bg replay-copy-fg replay-incremental-bg replay-incremental-fg replay-match-active-bg replay-match-active-fg replay-match-inactive-bg replay-match-inactive-fg replay-play-bg replay-play-fg replay-selection-bg replay-selection-fg replay-status-bar-bg replay-status-bar-fg replay-text-copy-mode replay-text-play-mode replay-text-time-mode replay-text-visual-mode replay-time-bg replay-time-fg replay-visual-bg replay-visual-fg search-status-bar-bg search-status-bar-fg search-text-no-matches-found search-text-searching terminal-text-exited timestamp-format
animate
Type: :boolean
Default: true
Whether to enable animation.
animations
Type: :array
Default: @[]
A list of all of the enabled animations that will be used by (input/find). If this is an empty array, all built-in animations will be enabled.
color-error
Type: :string
Default: "1"
The color used for error messages.
color-info
Type: :string
Default: "6"
The color used for info messages.
color-map
Type: :table
Default: @{}
The color map used to translate the colors used for rendering a pane.
color-warn
Type: :string
Default: "3"
The color used for warning messages.
data-directory
Type: :string
Default: ""
The directory in which .borg files will be saved. This is inferred on startup. If set to an empty string, recording to disk is disabled.
default-frame
Type: :string
Default: ""
The frame used for all new clients. A blank string means a random frame will be chosen from all frames.
default-shell
Type: :string
Default: "/bin/bash"
The default shell with which to start panes. Defaults to the value
of $SHELL
on startup.
input-find-active-bg
Type: :string
Default: "15"
The background color of the active row in (input/find).
input-find-active-fg
Type: :string
Default: "0"
The foreground color of the active row in (input/find).
input-find-inactive-bg
Type: :string
Default: "7"
The background color of the inactive row in (input/find).
input-find-inactive-fg
Type: :string
Default: "0"
The foreground color of the inactive row in (input/find).
input-preview-border
Type: :keyword
Default: :normal
The border style of the preview border in (input/find).
input-preview-border-fg
Type: :string
Default: "5"
The color of the preview border in (input/find).
input-prompt-bg
Type: :string
Default: "3"
The background color of the input prompt in (input/*) functions.
input-prompt-fg
Type: :string
Default: "0"
The foreground color of the input prompt in (input/*) functions.
num-search-workers
Type: :number
Default: 0
The number of goroutines to use for searching in .borg files. Defaults to the number of CPUs.
remove-pane-on-exit
Type: :boolean
Default: false
If this is true
, when a pane's process exits or its node is killed
(such as with tree/rm), the portion of the layout related
to that node will be removed. This makes cy's layout functionality
work a bit more like tmux.
replay-copy-bg
Type: :string
Default: "3"
The color used to represent copy mode.
replay-copy-fg
Type: :string
Default: "0"
The foreground color used in time mode when the player is playing.
replay-incremental-bg
Type: :string
Default: "3"
The background color for incremental search in replay mode.
replay-incremental-fg
Type: :string
Default: "0"
The foreground color for incremental search in replay mode.
replay-match-active-bg
Type: :string
Default: "13"
The background color for the current search match in replay mode.
replay-match-active-fg
Type: :string
Default: "1"
The foreground color for the current search match in replay mode.
replay-match-inactive-bg
Type: :string
Default: "14"
The background color for search matches in replay mode.
replay-match-inactive-fg
Type: :string
Default: "1"
The foreground color for search matches in replay mode.
replay-play-bg
Type: :string
Default: "12"
The color used in time mode when the player is playing.
replay-play-fg
Type: :string
Default: "15"
The foreground color used in time mode when the player is playing.
replay-selection-bg
Type: :string
Default: "8"
The background color for selections in replay mode.
replay-selection-fg
Type: :string
Default: "9"
The foreground color for selections in replay mode.
replay-status-bar-bg
Type: :string
Default: "8"
The background color of the status bar in replay mode.
replay-status-bar-fg
Type: :string
Default: "15"
The foreground color of the status bar in replay mode.
replay-text-copy-mode
Type: :string
Default: "COPY"
The text shown in the status bar when in copy mode.
replay-text-play-mode
Type: :string
Default: "⏸"
The text shown in the status bar when playing.
replay-text-time-mode
Type: :string
Default: "⏵"
The text shown in the status bar when in time mode.
replay-text-visual-mode
Type: :string
Default: "VISUAL"
The text shown in the status bar when in visual mode.
replay-time-bg
Type: :string
Default: "4"
The color used to represent time mode.
replay-time-fg
Type: :string
Default: "15"
The foreground color used to represent time mode.
replay-visual-bg
Type: :string
Default: "10"
The color used to represent visual mode.
replay-visual-fg
Type: :string
Default: "0"
The foreground color used in time mode when the player is playing.
search-status-bar-bg
Type: :string
Default: "4"
The background color of the status bar in search mode.
search-status-bar-fg
Type: :string
Default: "15"
The foreground color of the status bar in search mode.
search-text-no-matches-found
Type: :string
Default: "no matches found for"
The text shown in the status bar when no matches are found.
search-text-searching
Type: :string
Default: "searching"
The text shown in the status bar when searching.
terminal-text-exited
Type: :string
Default: "exited"
The text shown when a terminal session exits.
timestamp-format
Type: :string
Default: "2006-01-02 15:04:05"
The format for all timestamps shown in cy. This uses Go's time.Layout format described here.