This repository has been archived on 2023-10-17. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/vimb/config

78 lines
3.0 KiB
Plaintext
Raw Permalink Normal View History

2023-01-28 15:34:05 +01:00
# Homepage that vimb opens if started without a URI.
set home-page=file:///home/diegofcs/.config/startpages/term/index.html
# Path to the default download directory. If no download directory is set,
# download will be written into current directory. The following pattern will
# be expanded if the download is started '~/', '~user', '$VAR' and '${VAR}'.
set download-path=~/Descargas
# Command with placeholder '%s' called if form field is opened with $EDITOR to
# spawn the editor-like `x-terminal-emulator -e vim %s'. To use Gvim as the
# editor, it's necessary to call it with `-f' to run it in the foreground.
set editor-command=termite -e "vim %s"
# If enabled the inputbox will be hidden whenever it contains no text.
set input-autohide=true
# Enable or disable the spell checking feature.
set spell-checking=true
# Set comma separated list of spell checking languages to be used for
# spell checking.
set spell-checking-languages=es
# Enable or disable support for WebGL on pages.
set webgl=true
# While typing a search command, show where the pattern typed so far matches.
set incsearch=true
# The font family to use as the default for content that does not specify a
# font.
set default-font=Hack Nerd Font
# The font family used as the default for content using monospace font.
set monospace-font=Hack Nerd Font Mono
# The font family used as the default for content using sans-serif font.
set sans-serif-font=Hack Nerd Font
# The font family used as the default for content using serif font.
set serif-font=Hack Nerd Font
# The default font size used to display text.
set font-size=8
# Default font size for the monospace font.
set monospace-font-size=8
# Default Full-Content zoom level in percent. Default is 100.
set default-zoom=120
# Shortcuts allow the opening of an URI built up from a named template with
# additional parameters.
shortcut-add duck=https://duckduckgo.com/?q=$0
shortcut-add d=http://dict.cc/?s=$0
shortcut-add g=https://encrypted.google.com/search?q=$0
# Set the shortcut as the default, that is the shortcut to be used if no
# shortcut is given and the string to open is not an URI.
shortcut-default duck
# Map page zoom in normal mode to keys commonly used across applications
# + (zoom in), - (zoom out), = (zoom reset)
nmap + zI
nmap - zO
nmap = zz
# GUI color settings
# Color scheme: Base16 Grayscale (https://github.com/chriskempson/base16)
set completion-css=color:#f7f7f7;background-color:#101010;font:8pt Hack Nerd Font;
set completion-hover-css=color:#999999;background-color:#252525;font:8pt Hack Nerd Font;
set completion-selected-css=color:#999999;background-color:#252525;font:8pt Hack Nerd Font;
set input-css=color:#f7f7f7;background-color:#101010;font:8pt Hack Nerd Font;
set input-error-css=color:#999999;background-color:#252525;font:8pt Hack Nerd Font;
set status-css=color:#f7f7f7;background-color:#101010;font:8pt Hack Nerd Font;
set status-ssl-css=color:#f7f7f7;background-color:#252525;font:8pt Hack Nerd Font;
set status-ssl-invalid-css=color:#999999;background-color:#101010;font:8pt Hack Nerd Font;