custom config for merging
This commit is contained in:
parent
3e535542dd
commit
74531a196e
14
config.h
14
config.h
@ -5,7 +5,7 @@
|
|||||||
*
|
*
|
||||||
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
||||||
*/
|
*/
|
||||||
static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true";
|
static char *font = "Hack Nerd Font:pixelsize=20:antialias=true:autohint=true";
|
||||||
static int borderpx = 2;
|
static int borderpx = 2;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -94,7 +94,7 @@ char *termname = "st-256color";
|
|||||||
unsigned int tabspaces = 8;
|
unsigned int tabspaces = 8;
|
||||||
|
|
||||||
/* bg opacity */
|
/* bg opacity */
|
||||||
float alpha = 0.8, alphaUnfocused = 0.6;
|
float alpha = 0.8;
|
||||||
|
|
||||||
/* Terminal colors (16 first used in escape sequence) */
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
static const char *colorname[] = {
|
static const char *colorname[] = {
|
||||||
@ -125,6 +125,8 @@ static const char *colorname[] = {
|
|||||||
"#555555",
|
"#555555",
|
||||||
"gray90", /* default foreground colour */
|
"gray90", /* default foreground colour */
|
||||||
"black", /* default background colour */
|
"black", /* default background colour */
|
||||||
|
"#c5c8c6", // hybrid foreground
|
||||||
|
"#1d1f21", // hybrid background
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -132,11 +134,10 @@ static const char *colorname[] = {
|
|||||||
* Default colors (colorname index)
|
* Default colors (colorname index)
|
||||||
* foreground, background, cursor, reverse cursor
|
* foreground, background, cursor, reverse cursor
|
||||||
*/
|
*/
|
||||||
unsigned int defaultfg = 258;
|
unsigned int defaultfg = 260;
|
||||||
unsigned int defaultbg = 259;
|
unsigned int defaultbg = 261;
|
||||||
unsigned int defaultcs = 256;
|
unsigned int defaultcs = 256;
|
||||||
static unsigned int defaultrcs = 257;
|
static unsigned int defaultrcs = 257;
|
||||||
unsigned int bg = 17, bgUnfocused = 16;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h4-Functions-using-CSI-_-ordered-by-the-final-character-lparen-s-rparen:CSI-Ps-SP-q.1D81
|
* https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h4-Functions-using-CSI-_-ordered-by-the-final-character-lparen-s-rparen:CSI-Ps-SP-q.1D81
|
||||||
@ -151,7 +152,8 @@ unsigned int bg = 17, bgUnfocused = 16;
|
|||||||
* 7: blinking st cursor
|
* 7: blinking st cursor
|
||||||
* 8: steady st cursor
|
* 8: steady st cursor
|
||||||
*/
|
*/
|
||||||
static unsigned int cursorstyle = 1;
|
static unsigned int cursorstyle = 3;
|
||||||
|
static int cursorblinks = 1;
|
||||||
static Rune stcursor = 0x2603; /* snowman ("☃") */
|
static Rune stcursor = 0x2603; /* snowman ("☃") */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user