Created
February 8, 2018 01:01
-
-
Save fstamour/e7154f7ee376888883914d95a41c811d to your computer and use it in GitHub Desktop.
Termite (a terminal emulator) configuration (mostly for colors)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To place in ~/.config/termite/config | |
[options] | |
resize_grip = false | |
scroll_on_output = false | |
scroll_on_keystroke = true | |
audible_bell = false | |
visible_bell = false | |
mouse_autohide = false | |
allow_bold = true | |
dynamic_title = true | |
urgent_on_bell = true | |
clickable_url = true | |
font = Monospace 9 | |
scrollback_lines = 1000 | |
search_wrap = true | |
# "system", "on" or "off" | |
cursor_blink = system | |
# "block", "underline" or "ibeam" | |
cursor_shape = block | |
# word characters used for word selection | |
# (default if unset: all graphic non-punctuation/space characters) | |
#word_chars = -A-Za-z0-9,./?%&#:_=+@~ | |
# emit escape sequences for other keys modified by Control | |
#modify_other_keys = false | |
[colors] | |
# special | |
foreground = #d0d0d0 | |
foreground_bold = #d0d0d0 | |
cursor = #d0d0d0 | |
background = #000000 | |
# black | |
color0 = #000000 | |
color8 = #808080 | |
# red | |
color1 = #ff0000 | |
color9 = #ff0000 | |
# green | |
color2 = #33ff00 | |
color10 = #33ff00 | |
# yellow | |
color3 = #ff0099 | |
color11 = #ff0099 | |
# blue | |
color4 = #0066ff | |
color12 = #0066ff | |
# magenta | |
color5 = #cc00ff | |
color13 = #cc00ff | |
# cyan | |
color6 = #00ffff | |
color14 = #00ffff | |
# white | |
color7 = #d0d0d0 | |
color15 = #ffffff |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment