diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/sild/sild.cfg | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/config/sild/sild.cfg b/config/sild/sild.cfg new file mode 100644 index 0000000..b845946 --- /dev/null +++ b/config/sild/sild.cfg @@ -0,0 +1,90 @@ +# sild configuration file +# Default location: ~/.config/sild/sild.cfg +# Override with: sild --config /path/to/file.cfg + +########## +# Layout # +########## + +# Auto Size +# Default: true +# auto_size = true + +# Number of source lines shown in the code view box. +# Default: 15 +# code_lines = 15 + +# Inner width of the code box in characters. +# Default: 56 +# code_inner = 56 + +# Width of the history column in characters. +# Default: 40 +# hist_width = 40 + +########### +# Colours # +########### + +# Colours are specified as ANSI SGR codes. +# Learn more here: https://gist.github.com/ConnerWill/d4b6c776b509add763e17f9f113fd25b + +# Lua keywords +# Default: 1;34 (bold blue) +# col_keyword = 1;34 + +# String literals +# Default: 32 (green) +# col_string = 32 + +# Numeric literals +# Default: 35 (magenta) +# col_number = 35 + +# Operators +# Default: 33 (yellow) +# col_operator = 33 + +# Comments +# Default: 2 (dim) +# col_comment = 2 + +# Current line marker +# Default: 33 (yellow) +# col_current = 33 + +# Breakpoint line number +# Default: 31 (red) +# col_breakpt = 31 + +# Dimmed elements +# Default: 2 (dim) +# col_dim = 2 + +# History column headers +# Default: 36 (cyan) +# col_header = 36 + +# Line number inside history headers +# Default: 33 (yellow) +# col_lineno = 33 + +# Watch label prefix +# Default: 36 (cyan) +# col_watch = 36 + +# Evaluated values +# Default: 33 (yellow) +# col_value = 33 + +# Informational messages +# Default: 36 (cyan) +# col_info = 36 + +# Error messages +# Default: 31 (red) +# col_error = 31 + +# sild banner and breakpoint messages +# Default: 33 (yellow) +# col_prompt = 33 |
