Last active
November 19, 2019 12:53
-
-
Save cesalazar/f2295f01402b24076e5858d78e263259 to your computer and use it in GitHub Desktop.
Vim-Vixen config
This file contains 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
{ | |
"keymaps": { | |
"0": { "type": "scroll.home" }, | |
":": { "type": "command.show" }, | |
"o": { "type": "command.show.open", "alter": false }, | |
"O": { "type": "command.show.open", "alter": true }, | |
"t": { "type": "command.show.tabopen", "alter": false }, | |
"T": { "type": "command.show.tabopen", "alter": true }, | |
"w": { "type": "command.show.winopen", "alter": false }, | |
"W": { "type": "command.show.winopen", "alter": true }, | |
"b": { "type": "command.show.buffer" }, | |
"a": { "type": "command.show.addbookmark", "alter": true }, | |
"k": { "type": "scroll.vertically", "count": -1 }, | |
"j": { "type": "scroll.vertically", "count": 1 }, | |
"h": { "type": "scroll.horizonally", "count": -1 }, | |
"l": { "type": "scroll.horizonally", "count": 1 }, | |
"u": { "type": "scroll.pages", "count": -0.5 }, | |
"d": { "type": "scroll.pages", "count": 0.5 }, | |
"<C-U>": { "type": "scroll.pages", "count": -1 }, | |
"<C-D>": { "type": "scroll.pages", "count": 1 }, | |
"gg": { "type": "scroll.top" }, | |
"G": { "type": "scroll.bottom" }, | |
"$": { "type": "scroll.end" }, | |
"x": { "type": "tabs.close" }, | |
"!d": { "type": "tabs.close.force" }, | |
"U": { "type": "tabs.reopen" }, | |
"J": { "type": "tabs.prev", "count": 1 }, | |
"K": { "type": "tabs.next", "count": 1 }, | |
"<A-J>": { "type": "tabs.prev", "count": 1 }, | |
"<A-K>": { "type": "tabs.next", "count": 1 }, | |
"gT": { "type": "tabs.prev", "count": 1 }, | |
"gt": { "type": "tabs.next", "count": 1 }, | |
"g0": { "type": "tabs.first" }, | |
"g$": { "type": "tabs.last" }, | |
",": { "type": "tabs.prevsel" }, | |
"r": { "type": "tabs.reload", "cache": false }, | |
"R": { "type": "tabs.reload", "cache": true }, | |
"gp": { "type": "tabs.pin.toggle" }, | |
"yt": { "type": "tabs.duplicate" }, | |
"zz": { "type": "zoom.in" }, | |
"ZZ": { "type": "zoom.out" }, | |
"zZ": { "type": "zoom.neutral" }, | |
"f": { "type": "follow.start", "newTab": false }, | |
"F": { "type": "follow.start", "newTab": true, "background": false }, | |
"H": { "type": "navigate.history.prev" }, | |
"L": { "type": "navigate.history.next" }, | |
"[": { "type": "navigate.link.prev" }, | |
"]": { "type": "navigate.link.next" }, | |
"gu": { "type": "navigate.parent" }, | |
"gU": { "type": "navigate.root" }, | |
".": { "type": "focus.input" }, | |
"gf": { "type": "page.source" }, | |
"yy": { "type": "urls.yank" }, | |
"p": { "type": "urls.paste", "newTab": false }, | |
"P": { "type": "urls.paste", "newTab": true }, | |
"/": { "type": "find.start" }, | |
"n": { "type": "find.next" }, | |
"N": { "type": "find.prev" }, | |
"\\": { "type": "addon.toggle.enabled" }, | |
"m": { "type": "mark.set.prefix" }, | |
"`": { "type": "mark.jump.prefix" } | |
}, | |
"search": { | |
"default": "duckduckgo", | |
"engines": { | |
"duckduckgo": "https://duckduckgo.com/?q={}" | |
} | |
}, | |
"properties": { | |
"hintchars": "abcdefghijklmnopqrstuvwxyz", | |
"smoothscroll": true | |
}, | |
"blacklist": [ | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment