.lesskey
# add a few key-bindings to the standard ones in `less`, which were
# found via live-input to `sed -n l`: these codes aren't guaranteed
# to be always the same across machines/setups

# Ctrl-f is like in the `micro` text editor and web-browsers
^f forw-search

# Ctrl-q is like in the `micro` text editor
^q quit

# F10
^[[21~ quit

# F12
^[[24~ quit

# Ctrl-F3 is like with web-browsers
^[OR repeat-search

# Ctrl-Shift-F3 is like with web-browsers
^[[1;2R reverse-search

# F1
^[OP help

.pythonrc
#!/usr/bin/python3

# disable file-saving of command histories from live sessions
import readline
readline.write_history_file = lambda *args: None

.wgetrc
hstsfile=/dev/null

.config/micro/bindings.json
{
    "Alt-/": "lua:comment.comment",
    "CtrlUnderscore": "lua:comment.comment",
    "F1": "ToggleHelp",
    "F3": "FindNext",
    "ShiftF3": "FindPrevious",
    "F10": "Quit"
}

.config/micro/settings.json
{
    "colorscheme": "dukelight-tc",
    "savehistory": false
}

.config/mpv/input.conf
up add volume 2
down add volume -2

+ add volume 2
= add volume 2
- add volume -2

Ctrl+left playlist-prev
Ctrl+right playlist-next

Q quit
Ctrl+q quit
F10 quit

.config/mpv/mpv.conf
volume=70
ao=pulse
cache-on-disk=no