Last active
January 27, 2022 06:30
-
-
Save gzmask/320484b27541e2249dec0bc16a8273b3 to your computer and use it in GitHub Desktop.
surfingkeys config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//gzmask's remapping of the keys | |
api.unmap('B'); | |
api.unmap('F'); | |
api.cmap('<Ctrl-j>', '<Tab>'); | |
api.cmap('<Ctrl-k>', '<Shift-Tab>'); | |
api.map('J', 'E'); | |
api.map('K', 'R'); | |
api.map('H', 'S'); | |
api.map('L', 'D'); | |
api.map('u', 'e'); | |
api.map('F', 'af'); | |
api.map('z0','zr'); | |
settings.theme = ` | |
.sk_theme { | |
background: #fefefe; | |
color: #000; } | |
.sk_theme tbody { | |
color: #000; } | |
.sk_theme input { | |
color: #317ef3; } | |
.sk_theme .url { | |
color: #38f; } | |
.sk_theme .annotation { | |
color: #15h; } | |
.sk_theme .focused { | |
background: #aaa; }`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment