Created
January 1, 2016 22:05
-
-
Save cirrusUK/63b30caccbfdcd20e37b to your computer and use it in GitHub Desktop.
vimb
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
| set editor-command=nvim-run %s | |
| set spell-checking=true | |
| set minimumfontsize=9.5 | |
| set monofontsize=9.5 | |
| set fontsize=9.5 | |
| set cursivfont=DejaVu Serif 9.5 | |
| set defaultfont=DejaVu Sans 9.5 | |
| set monofont=DejaVu Sans Mono 9.5 | |
| set sansfont=DejaVu Sans 9.5 | |
| set seriffont=DejaVu Serif 9.5 | |
| set hintkeys=asdfghjkl | |
| set home-page=https://www.google.com | |
| set completion-bg-active=#7c6f64 | |
| set completion-fg-active=#ebdbb2 | |
| set completion-bg-normal=#32302f | |
| set completion-fg-normal=#ebdbb2 | |
| set completion-font=DejaVu Sans Mono 9.5 | |
| set input-bg-normal=#32302f | |
| set input-fg-normal=#ebdbb2 | |
| set input-bg-error=#32302f | |
| set input-fg-error=#ebdbb2 | |
| set input-font-normal=DejaVu Sans Mono 9.5 | |
| set input-font-error=DejaVu Sans Mono 9.5 | |
| set status-color-bg=#3c3836 | |
| set status-color-fg=#076678 | |
| set status-ssl-color-bg=#3c3836 | |
| set status-ssl-color-fg=#076678 | |
| set status-sslinvalid-color-bg=#3c3836 | |
| set status-sslinvalid-color-fg=#076678 | |
| set status-font=DejaVu Sans Mono 9.5 | |
| set status-ssl-font=DejaVu Sans Mono 9.5 | |
| set status-sslinvalid-font=DejaVu Sans Mono 9.5 | |
| set x-hint-command=:sh! ~/local/bin/plumber <C-R>; <CR> |
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
| /* Base */ | |
| *:not(a),body,td,tr,p { | |
| background-color: #191919 !important; | |
| background-size: 0,0 !important; | |
| border-color: #2aa198 !important; | |
| color: #b2b2b2 !important; | |
| } | |
| h1,h2,h3,h4 { | |
| background-color: #191919 !important; | |
| color: #bdae93 !important | |
| } | |
| button { | |
| background-size: auto !important; | |
| background-color: #666666 !important; | |
| color: #2aa198 !important | |
| } | |
| a { | |
| color: #cb4b16 !important; | |
| background-color: #191919 !important | |
| } | |
| a:hover,a:focus { | |
| color: #2aa198 !important | |
| } | |
| a:visited { | |
| color: #bdae93 !important | |
| } | |
| /* :::::: Hints Coloring :::::: */ | |
| ._hintLabel { | |
| -webkit-transform:translate(px,-2px) !important; | |
| position: absolute !important; | |
| z-index: 100000 !important; | |
| color: #ebdbb2 !important; | |
| font:bold .8em monospace !important; | |
| background-color: #191919 !important; | |
| border-color: #2aa198 !important; | |
| margin: 0 !important; | |
| padding: 1px 1px !important; | |
| border: 1px solid !important; | |
| opacity: 1 !important | |
| } | |
| ._hintLabel._hintFocus { | |
| z-index: 100001 !important; | |
| opacity: 1 !important | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment