-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c7fbe26
commit 96976d9
Showing
3 changed files
with
148 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,85 @@ | ||
# Television configuration file | ||
# ---------------------------------------------------------------------------- | ||
# | ||
# Ui settings | ||
# ---------------------------------------------------------------------------- | ||
[ui] | ||
# Whether to use nerd font icons in the UI | ||
# This option requires a font patched with Nerd Font in order to properly | ||
# display glyphs (see https://www.nerdfonts.com/ for more information) | ||
use_nerd_font_icons = false | ||
# How much space to allocate for the UI (in percentage of the screen) | ||
# ┌───────────────────────────────────────┐ | ||
# │ │ | ||
# │ Terminal screen │ | ||
# │ ┌─────────────────────────────┐ │ | ||
# │ │ │ │ | ||
# │ │ │ │ | ||
# │ │ │ │ | ||
# │ │ Television UI │ │ | ||
# │ │ │ │ | ||
# │ │ │ │ | ||
# │ │ │ │ | ||
# │ │ │ │ | ||
# │ └─────────────────────────────┘ │ | ||
# │ │ | ||
# │ │ | ||
# └───────────────────────────────────────┘ | ||
ui_scale = 80 | ||
|
||
# Previewers settings | ||
# ---------------------------------------------------------------------------- | ||
[previewers.file] | ||
# The theme to use for syntax highlighting | ||
# A list of available themes can be found in the https://github.com/sharkdp/bat | ||
# repository which uses the same syntax highlighting engine as television | ||
theme = "Catppuccin Mocha" | ||
|
||
# Keybindings | ||
# ---------------------------------------------------------------------------- | ||
# | ||
# Channel mode keybindings | ||
[keybindings.Channel] | ||
# Quit the application | ||
esc = "Quit" | ||
# Scrolling through entries | ||
down = "SelectNextEntry" | ||
up = "SelectPrevEntry" | ||
ctrl-n = "SelectNextEntry" | ||
up = "SelectPrevEntry" | ||
ctrl-p = "SelectPrevEntry" | ||
# Scrolling the preview pane | ||
ctrl-d = "ScrollPreviewHalfPageDown" | ||
ctrl-u = "ScrollPreviewHalfPageUp" | ||
# Select an entry | ||
enter = "SelectEntry" | ||
# Copy the selected entry to the clipboard | ||
ctrl-y = "CopyEntryToClipboard" | ||
# Toggle the remote control mode | ||
ctrl-r = "ToggleRemoteControl" | ||
# Toggle the send to channel mode | ||
ctrl-s = "ToggleSendToChannel" | ||
|
||
# Remote control mode keybindings | ||
[keybindings.RemoteControl] | ||
# Quit the application | ||
esc = "Quit" | ||
# Scrolling through entries | ||
down = "SelectNextEntry" | ||
up = "SelectPrevEntry" | ||
ctrl-n = "SelectNextEntry" | ||
ctrl-p = "SelectPrevEntry" | ||
# Select an entry | ||
enter = "SelectEntry" | ||
# Toggle the remote control mode | ||
ctrl-r = "ToggleRemoteControl" | ||
|
||
# Send to channel mode keybindings | ||
[keybindings.SendToChannel] | ||
# Quit the application | ||
esc = "Quit" | ||
# Scrolling through entries | ||
down = "SelectNextEntry" | ||
up = "SelectPrevEntry" | ||
ctrl-n = "SelectNextEntry" | ||
ctrl-p = "SelectPrevEntry" | ||
# Select an entry | ||
enter = "SelectEntry" | ||
# Toggle the send to channel mode | ||
ctrl-s = "ToggleSendToChannel" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters