mirror of
https://github.com/alexpasmantier/television.git
synced 2025-07-29 14:21:43 +00:00
54 lines
1.4 KiB
TOML
54 lines
1.4 KiB
TOML
# Television configuration file
|
|
# ----------------------------------------------------------------------------
|
|
#
|
|
# Ui settings
|
|
# ----------------------------------------------------------------------------
|
|
[ui]
|
|
# Whether to use nerd font icons in the UI
|
|
use_nerd_font_icons = false
|
|
# How much space to allocate for the UI (in percentage of the screen)
|
|
ui_scale = 80
|
|
|
|
# Previewers settings
|
|
# ----------------------------------------------------------------------------
|
|
[previewers.file]
|
|
# The theme to use for syntax highlighting
|
|
theme = "Catppuccin Mocha"
|
|
|
|
# Keybindings
|
|
# ----------------------------------------------------------------------------
|
|
#
|
|
# Channel mode keybindings
|
|
[keybindings.Channel]
|
|
esc = "Quit"
|
|
down = "SelectNextEntry"
|
|
up = "SelectPrevEntry"
|
|
ctrl-n = "SelectNextEntry"
|
|
ctrl-p = "SelectPrevEntry"
|
|
ctrl-d = "ScrollPreviewHalfPageDown"
|
|
ctrl-u = "ScrollPreviewHalfPageUp"
|
|
enter = "SelectEntry"
|
|
ctrl-y = "CopyEntryToClipboard"
|
|
ctrl-r = "ToggleRemoteControl"
|
|
ctrl-s = "ToggleSendToChannel"
|
|
|
|
# Remote control mode keybindings
|
|
[keybindings.RemoteControl]
|
|
esc = "Quit"
|
|
down = "SelectNextEntry"
|
|
up = "SelectPrevEntry"
|
|
ctrl-n = "SelectNextEntry"
|
|
ctrl-p = "SelectPrevEntry"
|
|
enter = "SelectEntry"
|
|
ctrl-r = "ToggleRemoteControl"
|
|
|
|
# Send to channel mode keybindings
|
|
[keybindings.SendToChannel]
|
|
esc = "Quit"
|
|
down = "SelectNextEntry"
|
|
up = "SelectPrevEntry"
|
|
ctrl-n = "SelectNextEntry"
|
|
ctrl-p = "SelectPrevEntry"
|
|
enter = "SelectEntry"
|
|
ctrl-s = "ToggleSendToChannel"
|