chore: config tweaks

config
Ryan 2024-07-13 17:22:46 -04:00
parent 8d9920c8f4
commit 076c89656c
Signed by: ryan
GPG Key ID: 7D7E2E94267DAD95
1 changed files with 4 additions and 4 deletions

View File

@ -100,8 +100,8 @@ static const char *colorname[] = {
"red3",
"green3",
"yellow3",
"blue2",
"magenta3",
"red",
"magenta4",
"cyan3",
"gray90",
@ -185,7 +185,7 @@ const unsigned int scrollrate = 5;
/*
* The rate to zoom in (adjust the font size).
*/
const unsigned int zoomrate = 5;
const int zoomrate = 1;
/*
* Xresources preferences to load at startup
@ -251,7 +251,7 @@ static Shortcut shortcuts[] = {
{ TERMMOD, XK_Home, zoomreset, {.f = 0} },
{ TERMMOD, XK_C, clipcopy, {.i = 0} },
{ TERMMOD, XK_V, clippaste, {.i = 0} },
{ TERMMOD, XK_Y, selpaste, {.i = 0} },
{ TERMMOD, XK_y, selpaste, {.i = 0} },
{ MODKEY, XK_Up, kscrollup, {.i = -1 * scrollrate} },
{ MODKEY, XK_Down, kscrolldown, {.i = -1 * scrollrate} },
{ MODKEY, XK_e, externalpipe, {.v = editscreen} },