47 lines
868 B
TOML
47 lines
868 B
TOML
# TUI Backend - Default Configuration
|
|
# Terminal User Interface rendering
|
|
|
|
[form]
|
|
title = "TUI Form"
|
|
description = "Interactive terminal user interface form"
|
|
|
|
[form.validation]
|
|
validate_on_change = true
|
|
show_errors_inline = true
|
|
|
|
[output]
|
|
format = "json"
|
|
pretty_print = true
|
|
|
|
[terminal]
|
|
# Full TUI features
|
|
use_raw_mode = true
|
|
enable_mouse = true
|
|
enable_scrolling = true
|
|
# Fixed height (-1 = auto)
|
|
height = -1
|
|
# Fixed width (-1 = auto)
|
|
width = -1
|
|
|
|
[ui]
|
|
# Show field borders
|
|
show_borders = true
|
|
# Show field focus indicator
|
|
show_focus = true
|
|
# Highlight on hover
|
|
highlight_on_hover = true
|
|
# Animation enabled
|
|
enable_animations = true
|
|
|
|
[appearance]
|
|
theme = "default"
|
|
border_style = "rounded"
|
|
# Color scheme: default, dark, light, high_contrast
|
|
color_scheme = "default"
|
|
|
|
[keyboard]
|
|
# Vi-style navigation (hjkl)
|
|
vi_mode = false
|
|
# Emacs-style navigation
|
|
emacs_mode = false
|