dotfiles/.config/ov/config.yaml

275 lines
5.7 KiB
YAML

# This is the ov config file.
# Copy it to `$XDG_CONFIG_HOME/ov/config.yaml` or start it with `ov --config ov.yaml`.
#
# QuitSmall: false # Quit if the file size is smaller than the terminal size.
# IsWriteOriginal: false # Write the original content when exiting.
# BeforeWriteOriginal: 0 # Write the number of lines before the current location when exiting.
# AfterWriteOriginal: 0 # Write the number of lines after the current location when exiting.
#
# CaseSensitive: false # Case sensitive search.
SmartCaseSensitive: true # Case sensitive search if the search string contains uppercase characters.
# RegexpSearch: false # Regular expression search.
# Incsearch: true # Incremental search.
#
# MemoryLimit: -1 # The maximum number of lines that can be loaded into memory.
# MemoryLimitFile: 100 # The maximum number of lines that can be loaded into memory when opening a file.
#
# DisableMouse: false # Disable mouse support.
# DisableColumnCycle: false # Disable cycling when moving columns.
#
# ViewMode: markdown # Default view mode.
#
# Debug: false # Debug mode.
#
Prompt:
Normal:
# ShowFilename: true # Show the filename.
# InvertColor: true # Invert the color of the prompt.
# ProcessOfCount: true # Show the process of count.
# ShrinkChar: '…' # Characters displayed when the column is shrinking.
General:
TabWidth: 8
Header: 0
AlternateRows: false
ColumnMode: false
LineNumMode: false
WrapMode: true
ColumnDelimiter: ","
MarkStyleWidth: 1
# SectionDelimiter: "^#"
# Style
# String of the color name: Foreground, Background, UnderlineColor
# Boolean: Bold, Blink, Dim, Italic, Underline
# Number: UnderlineStyle
# Ashen Palette
# text = "#b4b4b4"
# red_flame = "#C53030"
# red_glowing = "#DF6464"
# red_ember = "#B14242"
# orange_glow = "#D87C4A"
# orange_blaze = "#C4693D"
# orange_smolder = "#E49A44"
# orange_golden = "#E5A72A"
# blue = "#4A8B8B"
# green_light = "#629C7D"
# green = "#1E6F54"
# background = "#121212"
# g_0 = "#e5e5e5"
# g_1 = "#e5e5e5"
# g_2 = "#d5d5d5"
# g_3 = "#b4b4b4"
# g_4 = "#a7a7a7"
# g_5 = "#949494"
# g_6 = "#737373"
# g_7 = "#535353"
# g_8 = "#323232"
# g_9 = "#212121"
# g_10 = "#1d1d1d"
# g_11 = "#191919"
# g_12 = "#151515"
StyleAlternate:
Background: "#212121"
StyleHeader:
Bold: true
Foreground: "#DF6464"
StyleOverStrike:
Foreground: "#C4693D"
Bold: true
StyleOverLine:
Underline: true
StyleLineNumber:
Bold: true
StyleSearchHighlight:
Reverse: true
StyleColumnHighlight:
Reverse: true
StyleMarkLine:
Background: "#212121"
StyleSectionLine:
Background: "#B14242"
Foreground: "#121212"
Bold: true
StyleMultiColorHighlight:
- Foreground: "#B14242"
- Foreground: "#C4693D"
- Foreground: "#4A8B8B"
- Foreground: "fuchsia"
- Foreground: "#DF6464"
- Foreground: "#E49A44"
- Foreground: "#E5A72A"
StyleColumnRainbow:
- Foreground: "#B14242"
- Foreground: "#C4693D"
- Foreground: "#4A8B8B"
- Foreground: "fuchsia"
- Foreground: "#DF6464"
- Foreground: "#E49A44"
- Foreground: "#E5A72A"
StyleJumpTargetLine:
Underline: true
# Keybind
# Special key
# "Enter","Backspace","Tab","Backtab","Esc",
# "Delete", "Insert",
# "Up", "Down", "Left", "Right", "Home", "End",
# "F1...F64"
# Modifier key
# "ctrl", "alt", "meta", "shift"
# Connect with modifier key + key
# "ctrl+c"
KeyBind:
exit:
- "Escape"
- "q"
cancel:
- "ctrl+c"
write_exit:
- "Q"
set_write_exit:
- "ctrl+q"
suspend:
- "ctrl+z"
sync:
- "ctrl+l"
reload:
- "ctrl+alt+l"
- "F5"
watch:
- "ctrl+alt+w"
- "F4"
watch_interval:
- "ctrl+w"
follow_mode:
- "ctrl+f"
follow_all:
- "ctrl+a"
follow_section:
- "F2"
help:
- "h"
- "ctrl+alt+c"
- "ctrl+f1"
logdoc:
- "ctrl+f2"
- "ctrl+alt+e"
down:
- "Enter"
- "Down"
- "ctrl+N"
- "n"
up:
- "Up"
- "e"
- "ctrl+p"
top:
- "E"
bottom:
- "N"
left:
- "m"
right:
- "i"
half_left:
- "ctrl+left"
half_right:
- "ctrl+right"
page_up:
- "PageUp"
- "ctrl+b"
page_down:
- "PageDown"
- "ctrl+v"
page_half_up:
- "ctrl+u"
page_half_down:
- "ctrl+d"
section_delimiter:
- "alt+d"
section_start:
- "ctrl+F3"
- "alt+s"
section_header_num:
- "F7"
hide_other:
- "alt+-"
next_section:
- "space"
last_section:
- "9"
previous_section:
- "^"
mark:
- "k"
remove_mark:
- "K"
remove_all_mark:
- "ctrl+delete"
next_mark:
- ">"
previous_mark:
- "<"
set_view_mode:
- "p"
- "P"
alter_rows_mode:
- "C"
line_number_mode:
- "G"
search:
- "/"
wrap_mode:
- "w"
- "W"
column_mode:
- "c"
backsearch:
- "?"
delimiter:
- "d"
header:
- "H"
skip_lines:
- "ctrl+s"
tabwidth:
- "t"
goto:
- "g"
next_search:
- "j"
next_backsearch:
- "J"
next_doc:
- "]"
previous_doc:
- "["
toggle_mouse:
- "ctrl+f3"
- "ctrl+alt+r"
multi_color:
- "."
jump_target:
- "ctrl+j"
Mode:
markdown:
SectionDelimiter: "^#"
WrapMode: true
psql:
Header: 2
AlternateRows: true
ColumnMode: true
LineNumMode: false
WrapMode: true
ColumnDelimiter: "|"
mysql:
Header: 3
AlternateRows: true
ColumnMode: true
LineNumMode: false
WrapMode: true
ColumnDelimiter: "|"