Last active
August 29, 2015 14:00
-
-
Save willnorris/c374b88cf92272572f4b to your computer and use it in GitHub Desktop.
hterm preferences
This file contains 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
// Modified from https://groups.google.com/a/chromium.org/d/topic/chromium-hterm/eEijj3W1UBk/discussion | |
// Disable bold. | |
term_.prefs_.set('enable-bold', false) | |
// Use this for Solarized Dark | |
term_.prefs_.set('background-color', "#002B36") | |
term_.prefs_.set('foreground-color', "#839496") | |
// Use this for Solarized Light | |
term_.prefs_.set('background-color', "#fdf6e3") | |
term_.prefs_.set('foreground-color', "#657b83") | |
// And of course you can adjust the font-family, font-size, font- | |
smoothing values to your liking. I use this: | |
term_.prefs_.set('font-family', 'Source Code Pro') | |
term_.prefs_.set('font-size', 16) | |
term_.prefs_.set('font-smoothing', 'subpixel-antialiased') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment