-
Notifications
You must be signed in to change notification settings - Fork 3
/
_slate
31 lines (26 loc) · 877 Bytes
/
_slate
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# GLOBAL CONFIGURATIONS
# -------------------------------------------------------------------
# See https://github.com/jigish/slate/wiki/Global-Configs
config defaultToCurrentScreen true
config secondsBeforeRepeat 0.2
config secondsBetweenRepeat 0.05
config keyboardLayout "qwerty"
config nudgePercentOf screenSize
config resizePercentOf screenSize
# OPERATION ON WINDOW
# -------------------------------------------------------------------
# Focus
bind h:cmd;ctrl focus left
bind j:cmd;ctrl focus down
bind k:cmd;ctrl focus up
bind l:cmd;ctrl focus right
# Move
bind h:cmd;ctrl;alt nudge -16 +0
bind j:cmd;ctrl;alt nudge +0 +16
bind k:cmd;ctrl;alt nudge +0 -16
bind l:cmd;ctrl;alt nudge +16 +0
# Resize
bind n:cmd;ctrl;alt resize -16 +0
bind m:cmd;ctrl;alt resize +0 +16
bind ,:cmd;ctrl;alt resize +0 -16
bind .:cmd;ctrl;alt resize +16 +0