Skip to content

Instantly share code, notes, and snippets.

@chungy
Created November 25, 2013 21:24
Show Gist options
  • Save chungy/7649158 to your computer and use it in GitHub Desktop.
Save chungy/7649158 to your computer and use it in GitHub Desktop.
my st customization
diff --git a/config.def.h b/config.def.h
index 2a7e098..f6d367f 100644
--- a/config.def.h
+++ b/config.def.h
@@ -5,7 +5,7 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
-static char font[] = "Liberation Mono:pixelsize=12:antialias=false:autohint=false";
+static char font[] = "DejaVu Sans Mono-10";
static int borderpx = 2;
static char shell[] = "/bin/sh";
@@ -18,7 +18,7 @@ float chscale = 1.0;
*
* More advanced example: " `'\"()[]{}"
*/
-static char worddelimiters[] = " ";
+static char worddelimiters[] = " `'\"()[]{}";
/* selection timeouts (in milliseconds) */
static unsigned int doubleclicktimeout = 300;
@@ -52,24 +52,24 @@ static unsigned int tabspaces = 8;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
- "black",
- "red3",
- "green3",
- "yellow3",
- "blue2",
- "magenta3",
- "cyan3",
- "gray90",
+ "#000000",
+ "#cc0000",
+ "#4e9a06",
+ "#c4a000",
+ "#3465a4",
+ "#75507b",
+ "#06989a",
+ "#d3d7cf",
/* 8 bright colors */
- "gray50",
- "red",
- "green",
- "yellow",
- "#5c5cff",
- "magenta",
- "cyan",
- "white",
+ "#555753",
+ "#ef2929",
+ "#8ae234",
+ "#fce94f",
+ "#729fcf",
+ "#ad7fa8",
+ "#34e2e2",
+ "#eeeeee",
[255] = 0,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment