dotfiles

Yes, my $HOME has a git repo now :(

git clone git://git.shimmy1996.com/dotfiles.git

config (883B)

    1 [options]
    2 # Suppress built-in key bindings, and specify them explicitly in this
    3 # config file.
    4 suppress_default_binds = true
    5 background = 262626
    6 overlay_font = Iosevka\ SS09:12
    7 
    8 [aliases]
    9 q = quit
   10 next = select_rel 1
   11 prev = select_rel -1
   12 
   13 [binds]
   14 q = quit
   15 
   16 # Image navigation
   17 <Left> = prev
   18 <Right> = next
   19 <Ctrl+p> = prev
   20 <Ctrl+n> = next
   21 <LeftSquareBracket> = prev
   22 <RightSquareBracket> = next
   23 gg = select_abs 0
   24 <Shift+g> = select_abs -1
   25 
   26 # Panning
   27 j = pan 0 -50
   28 k = pan 0 50
   29 h = pan 50 0
   30 l = pan -50 0
   31 
   32 # Zooming
   33 <Up> = zoom 10
   34 <Shift+Equals> = zoom 10
   35 <Down> = zoom -10
   36 - = zoom -10
   37 <Equals> = reset
   38 r = reset
   39 a = zoom actual
   40 
   41 # Other commands
   42 x = close
   43 f = fullscreen
   44 d = overlay
   45 p = exec echo $imv_current_file
   46 c = center
   47 s = scaling_mode next
   48 
   49 # Gif playback
   50 . = next_frame
   51 <Space> = toggle_playing
   52 
   53 # Slideshow control
   54 t = slideshow_duration +1
   55 <Shift+t> = slideshow_duration -1