From 5ec07dcba37dc0fa1e590e47bc31cac36468cad6 Mon Sep 17 00:00:00 2001 From: Fabian Schmidt Date: Sat, 23 May 2020 13:01:59 +0200 Subject: [PATCH 1/5] Changed tabspace to 4 --- config.def.h | 2 +- st.info | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.def.h b/config.def.h index 293e00c..be2ca27 100644 --- a/config.def.h +++ b/config.def.h @@ -87,7 +87,7 @@ char *termname = "st-256color"; * * stty tabs */ -unsigned int tabspaces = 8; +unsigned int tabspaces = 4; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { diff --git a/st.info b/st.info index d0694e2..e0636fc 100644 --- a/st.info +++ b/st.info @@ -47,7 +47,7 @@ st-mono| simpleterm monocolor, indn=\E[%p1%dS, invis=\E[8m, is2=\E[4l\E>\E[?1034l, - it#8, + it#4, kel=\E[1;2F, ked=\E[1;5F, ka1=\E[1~, From 9c4a7d9b1fa98a34599ac6fd481980b80fe34add Mon Sep 17 00:00:00 2001 From: Fabian Schmidt Date: Sat, 23 May 2020 13:02:40 +0200 Subject: [PATCH 2/5] Changed word delimiters --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index be2ca27..9d07135 100644 --- a/config.def.h +++ b/config.def.h @@ -34,7 +34,7 @@ static float chscale = 1.0; * * More advanced example: L" `'\"()[]{}" */ -wchar_t *worddelimiters = L" "; +wchar_t *worddelimiters = L" `'\"()[]{}"; /* selection timeouts (in milliseconds) */ static unsigned int doubleclicktimeout = 300; From 0048ea34adbb8c57045b668018c29b6a7cd0ca95 Mon Sep 17 00:00:00 2001 From: Fabian Schmidt Date: Sat, 23 May 2020 14:25:00 +0200 Subject: [PATCH 3/5] Changed font to SauceCodePro Mono --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 9d07135..86dacd5 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=true:autohint=true"; +static char *font = "SauceCodePro Nerd Font Mono:pixelsize=12:antialias=true:autohint=true"; static int borderpx = 2; /* From 4afa49363c3c2450c0c23ce5de09a85edb154241 Mon Sep 17 00:00:00 2001 From: Fabian Schmidt Date: Sat, 23 May 2020 14:41:53 +0200 Subject: [PATCH 4/5] Added custom colorscheme --- config.def.h | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/config.def.h b/config.def.h index 86dacd5..a152e86 100644 --- a/config.def.h +++ b/config.def.h @@ -92,24 +92,24 @@ unsigned int tabspaces = 4; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { /* 8 normal colors */ - "black", - "red3", - "green3", - "yellow3", - "blue2", - "magenta3", - "cyan3", - "gray90", + "#0c0d0e", + "#e31a1c", + "#31a354", + "#dca060", + "#3182db", + "#756bb1", + "#80b1d3", + "#b7b8b9", /* 8 bright colors */ - "gray50", - "red", - "green", - "yellow", - "#5c5cff", - "magenta", - "cyan", - "white", + "#737475", + "#e31a1c", + "#31a354", + "#dca060", + "#3182db", + "#756bb1", + "#80b1d3", + "#fcfdfe", [255] = 0, From 044680c9cfe4b1550f6bab57f1c28eaa8ee2b97d Mon Sep 17 00:00:00 2001 From: Fabian Schmidt Date: Tue, 26 May 2020 18:24:53 +0200 Subject: [PATCH 5/5] Changed primary font size --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index a152e86..787730e 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 = "SauceCodePro Nerd Font Mono:pixelsize=12:antialias=true:autohint=true"; +static char *font = "SauceCodePro Nerd Font Mono:pixelsize=15:antialias=true:autohint=true"; static int borderpx = 2; /*