Last active
June 14, 2025 08:14
-
-
Save linglingqi007/ef86c4c8990a68c3fd303b6e34907b33 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
| settings.historyMUOrder = false; | |
| settings.tabsMRUOrder = false; | |
| settings.tabsThreshold = 3; | |
| settings.scrollStepSize = 100; | |
| settings.useLocalMarkdownAPI = false; | |
| settings.focusAfterClosed = "last"; | |
| api.Hints.setCharacters("yuiophjklnm"); | |
| api.map("J", "R") | |
| api.map("K", "E") | |
| api.map("H", "S") | |
| api.map("L", "D") | |
| settings.blocklistPattern = /https:\/\/monkeytype.com|https:\/\/www.eletypes.com/; | |
| /* set theme */ | |
| settings.theme = ` | |
| .sk_theme { | |
| font-family: Input Sans Condensed, Charcoal, sans-serif; | |
| font-size: 10pt; | |
| background: #282828; | |
| color: #ebdbb2; | |
| } | |
| .sk_theme tbody { | |
| color: #b8bb26; | |
| } | |
| .sk_theme input { | |
| color: #d9dce0; | |
| } | |
| .sk_theme .url { | |
| color: #98971a; | |
| } | |
| .sk_theme .annotation { | |
| color: #b16286; | |
| } | |
| .sk_theme .omnibar_highlight { | |
| color: #ebdbb2; | |
| } | |
| .sk_theme #sk_omnibarSearchResult ul li:nth-child(odd) { | |
| background: #282828; | |
| } | |
| .sk_theme #sk_omnibarSearchResult ul li.focused { | |
| background: #d3869b; | |
| } | |
| #sk_status, #sk_find { | |
| font-size: 20pt; | |
| }`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment