46 lines
791 B
TOML
46 lines
791 B
TOML
# TUI Backend - Development Configuration
|
|
# Extended TUI features for development
|
|
|
|
[form]
|
|
title = "TUI Form (Dev)"
|
|
description = "Development TUI form with all features enabled"
|
|
|
|
[form.validation]
|
|
validate_on_change = true
|
|
show_errors_inline = true
|
|
strict_validation = true
|
|
|
|
[output]
|
|
format = "json"
|
|
pretty_print = true
|
|
debug_output = true
|
|
|
|
[terminal]
|
|
use_raw_mode = true
|
|
enable_mouse = true
|
|
enable_scrolling = true
|
|
height = -1
|
|
width = -1
|
|
|
|
[ui]
|
|
show_borders = true
|
|
show_focus = true
|
|
highlight_on_hover = true
|
|
enable_animations = true
|
|
# Show field indices for debugging
|
|
show_field_indices = true
|
|
|
|
[appearance]
|
|
theme = "default"
|
|
border_style = "double"
|
|
color_scheme = "default"
|
|
|
|
[keyboard]
|
|
vi_mode = false
|
|
emacs_mode = false
|
|
|
|
[debug]
|
|
enabled = true
|
|
log_level = "debug"
|
|
trace_rendering = false
|