.base00-background { background-color: #2b303b; }
.base01-background { background-color: #343d46; }
.base02-background { background-color: #4f5b66; }
.base03-background { background-color: #65737e; }
.base04-background { background-color: #a7adba; }
.base05-background { background-color: #c0c5ce; }
.base06-background { background-color: #dfe1e8; }
.base07-background { background-color: #eff1f5; }
.base08-background { background-color: #bf616a; }
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
| :root.sidebar .label-content { | |
| font-family: "UD デジタル 教科書体 NP-R" !important; | |
| font-size: 16px !important; | |
| } |
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
| // an example to create a new mapping `ctrl-y` | |
| api.mapkey('<ctrl-y>', 'Show me the money', function() { | |
| Front.showPopup('a well-known phrase uttered by characters in the 1996 film Jerry Maguire (Escape to close).'); | |
| }); | |
| // an example to replace `T` with `gt`, click `Default mappings` to see how `T` works. | |
| api.map('gt', 'T'); | |
| api.map('J', 'R'); | |
| api.map('K', 'E'); | |
| api.map('d', 'x'); |
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
| /* | |
| Adapted from https://github.com/sindresorhus/github-markdown-css | |
| The MIT License (MIT) | |
| Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com) | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights |
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
| { | |
| "schemes": [ | |
| { | |
| "name": "base16-ocean", | |
| "background": "#2b303b", | |
| "selectionBackground": "#65737E", | |
| "black": "#2b303b", | |
| "blue": "#96b5b4", | |
| "brightBlack": "#65737e", | |
| "brightBlue": "#5fb3b3", |
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
| { | |
| "prevent_autofocus": true, | |
| "blacklist": "*example.com* http://example.org/editor/* *mail.google.com*", | |
| "config_file_directory": "~/vimfx", | |
| "mode.normal.history_back": "h", | |
| "mode.normal.history_forward": "l", | |
| "mode.normal.scroll_left": "H", | |
| "mode.normal.scroll_right": "L", | |
| "mode.normal.tab_select_previous": "K gT", | |
| "mode.normal.tab_select_next": "J gt", |