diff options
| author | TCCQ <thomasmulmer02@gmail.com> | 2024-09-14 09:52:12 -0700 |
|---|---|---|
| committer | TCCQ <thomasmulmer02@gmail.com> | 2024-09-14 09:52:12 -0700 |
| commit | 194cf81baad9bd82348aa3b1bfce8a1601275047 (patch) | |
| tree | 2776d91c1e143e047914003e840511e22281a481 | |
| parent | b1d0c0e10525732b571d172d4198734812d7aef3 (diff) | |
vimb
| -rw-r--r-- | vimb/_style.css | 55 | ||||
| -rw-r--r-- | vimb/config | 14 |
2 files changed, 69 insertions, 0 deletions
diff --git a/vimb/_style.css b/vimb/_style.css new file mode 100644 index 0000000..a824e29 --- /dev/null +++ b/vimb/_style.css @@ -0,0 +1,55 @@ +*,div,pre,textarea,body,input,td,tr,p { + background-color: #303030 !important; + background-image: none !important; + color: #bbbbbb !important; +} +h1,h2,h3,h4 { + background-color: #303030 !important; + color: #b8ddea !important; +} +a { + color: #70e070 !important; +} +a:hover,a:focus { + color: #7070e0 !important; +} +a:visited { + color: #e07070 !important; +} +img { + opacity: .5; +} +img:hover { + opacity: 1; +} + +/* Hint mode color styling + * Color scheme: Base16 Eighties (https://github.com/chriskempson/base16) + * + * The precedence of the user style is lower than that of the website so you + * have to mark your style definition to have higher priority. + */ +span[vimbhint^='label'] { + background-color: #f2f0ec !important; + border: 1px solid #2d2d2d !important; + color: #2d2d2d !important; + font: bold 10pt monospace !important; + opacity: 1 !important; + padding: .1em .4em !important; + text-transform: uppercase !important; +} +span[vimbhint='label focus'] { + font: bold 13pt monospace !important; +} +*[vimbhint^='hint'] { + background-color: #ffcc66 !important; + color: #2d2d2d !important; +} +*[vimbhint='hint focus'] { + background-color: #6699cc !important; + color: #2d2d2d !important; +} + +body::-webkit-scrollbar { + display: none; +} diff --git a/vimb/config b/vimb/config new file mode 100644 index 0000000..c44cae1 --- /dev/null +++ b/vimb/config @@ -0,0 +1,14 @@ +set editor-command=ALTERNATE_EDITOR=emacs emacsclient -n %s +set webgl=true +set hardware-acceleration-policy=never +set incsearch=true +set spell-checking=true +set scripts=false + +set font-size=12 +set monospace-font-size=12 +set input-autohide=true + +nmap + zI +nmap - zO +nmap = zz
\ No newline at end of file |
