Skip to content

Instantly share code, notes, and snippets.

@cesalazar
Last active November 19, 2019 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cesalazar/f2295f01402b24076e5858d78e263259 to your computer and use it in GitHub Desktop.
Save cesalazar/f2295f01402b24076e5858d78e263259 to your computer and use it in GitHub Desktop.
Vim-Vixen config
{
"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