summaryrefslogtreecommitdiff
path: root/src/usercfg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/usercfg.h')
-rw-r--r--src/usercfg.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/usercfg.h b/src/usercfg.h
index b5ed815..738ecd1 100644
--- a/src/usercfg.h
+++ b/src/usercfg.h
@@ -17,11 +17,13 @@ static const char *termcmd[] = {"st", NULL};
#define MOD ALT
static const Binding binds[] = {
BIND(MOD, Return, termcmd),
- CALL(MOD|SHIFT, q, quit),
- CALL(MOD, k, focus_next),
- CALL(MOD, j, focus_prev),
- CALL(MOD, c, close_focused),
+ CALL(MOD|SHIFT, e, quit),
+ CALL(MOD, j, focus_next),
+ CALL(MOD, k, focus_prev),
+ CALL(MOD|SHIFT, q, close_focused),
CALL(MOD, f, toggle_floating),
+ CALL(MOD, equal, inc_gaps),
+ CALL(MOD, minus, dec_gaps),
};
#endif