diff options
Diffstat (limited to 'svterc')
-rw-r--r-- | svterc | 90 |
1 files changed, 90 insertions, 0 deletions
@@ -0,0 +1,90 @@ +[general] + +#browser = sb + +[ui] +# true to enable bold text, false to disable it. +allow_bold=false + +# true to enable an audible bell, false to disable it. +audible_bell=false + +# true to auto-hide the mouse cursor, false to leave it alone. +autohide_mouse=true + +# Font to use for all text displayed. +# Format: font-name font-size +# Example: monospace 10 +# Example: Envy Code R 10 +font=terminus 14 + +# true to start in fullscreen mode, false to start in windowed mode. +fullscreen=false + +# Number of lines to allow scrolling back to. -1 for unlimited. +num_scrollback_lines=-1 + +# Whether or not to scroll to the bottom when a keystoke occurs. +scroll_on_keystroke=true + +# Window Sizes +window_height=600 +window_width=500 +# Whether or not to scroll to the bottom when output occurs. +scroll_on_output=false + +# true to use a transparent background, false for an opaque background. +bg_transparent=false + +# To set an image as the background. +#bg_image=/path/to/image + +# If using an image as background, set the saturation level here. (between 0 and 1) +#bg_saturation=.7 + +# Regular expression to use for matching URLs in terminal text. +url_regex=(ftp|http)s?://[-a-zA-Z0-9.?$%&/=_~#.,:;+]* + +# true to enable a visible bell, false to disable it. +visible_bell=false + + +# Characters that compose a word for highlighting words. +# Character ranges are valid here, e.g. A-Z for all uppercase alpha chars. +# The value given below is a good default if you're unsure. +word_chars=-A-Za-z0-9,./?%&#:_ + +[colour scheme] +foreground=white +background=black +#dark/light black +0=#000000 +8=#646464 + +#dark/light red +1=#960000 +9=#F05050 + +#dark/light green +10=#49DC49 +2=#49DC49 + +#dark/light yellow +3=#AA5500 +11=#B8B81E + +#dark/light blue +4=#0D259C +12=#5555FF + +#dark/light magenta +5=#A000A0 +13=#E64CE6 + +#dark/light cyan +6=#009696 +14=#00C8C8 + +#dark/light white +7=#F0F0F0 +15=#FFFFFF |