hjkl 0.10.1

Vim-modal terminal editor: standalone TUI built on the hjkl engine.
# hjkl default configuration. Bundled into the binary via include_str!()
# and parsed at runtime as the source of truth for default values.
#
# A user config at $XDG_CONFIG_HOME/hjkl/config.toml is layered on top
# of these defaults — only fields you want to override need to appear
# there. Unknown keys are an error.
#
# Resolved paths:
#   Linux   ~/.config/hjkl/config.toml
#   macOS   ~/Library/Application Support/sh.kryptic.hjkl/config.toml
#   Windows %APPDATA%\kryptic\hjkl\config\config.toml

[editor]
# Leader key in normal mode. Single character. Common alts: "\\", ",".
leader = " "

# Fallback indent width when no .editorconfig covers the open file.
tab_width = 4

# Fallback for spaces-vs-tabs when no .editorconfig covers the file.
expandtab = true

# Files with this many lines or more skip the per-keystroke git diff
# recomputation. Lower this on slower machines.
huge_file_threshold = 50000

[theme]
# Theme name. Currently only "dark" is bundled.
name = "dark"