dotfiles

My configuration files.
Log | Files | Refs | README

commit c7b73e729329806abf974ab3cf48e2c87694f832
parent 1ffffb15db18bbe0d905095d356cbbda53ba0b0a
Author: Sven Möller <sven-moeller@outlook.de>
Date:   Mon, 13 Dec 2021 22:04:29 +0100

Add imv config

Diffstat:
Aimv/.config/imv/config | 62++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 62 insertions(+), 0 deletions(-)

diff --git a/imv/.config/imv/config b/imv/.config/imv/config @@ -0,0 +1,62 @@ +# Default config for imv + +[options] + +# Suppress built-in key bindings, and specify them explicitly in this +# config file. +suppress_default_binds = true +scaling_mode = shrink + +[aliases] +# Define aliases here. Any arguments passed to an alias are appended to the +# command. +# alias = command to run + +[binds] +# Define some key bindings +q = quit +y = exec echo working! + +# Image navigation +<Left> = prev +<bracketleft> = prev +<Right> = next +<bracketright> = next +gg = goto 1 +<Shift+G> = goto -1 + +# Panning +j = pan 0 -50 +k = pan 0 50 +h = pan 50 0 +l = pan -50 0 + +# Zooming +<Up> = zoom 1 +<Shift+plus> = zoom 1 +i = zoom 1 +<Down> = zoom -1 +<minus> = zoom -1 +o = zoom -1 + +# Rotate Clockwise by 90 degrees +<Ctrl+r> = rotate by 90 + +# Other commands +x = close +f = fullscreen +d = overlay +p = exec echo $imv_current_file +c = center +s = scaling next +<Shift+S> = upscaling next +a = zoom actual +r = reset + +# Gif playback +<period> = next_frame +<space> = toggle_playing + +# Slideshow control +t = slideshow +1 +<Shift+T> = slideshow -1