83 lines
1.8 KiB
Org Mode
83 lines
1.8 KiB
Org Mode
|
#+TITLE: Zathura
|
||
|
:DRAWER:
|
||
|
#+PROPERTY: header-args :comments no
|
||
|
#+PROPERTY: header-args+ :mkdirp yes
|
||
|
#+PROPERTY: header-args+ :tangle ~/.config/zathura/zathurarc
|
||
|
:END:
|
||
|
|
||
|
* Configuration
|
||
|
#+BEGIN_SRC conf
|
||
|
# Use clipboard
|
||
|
set selection-clipboard clipboard
|
||
|
|
||
|
# Remove padding
|
||
|
set statusbar-h-padding 0
|
||
|
set statusbar-v-padding 0
|
||
|
|
||
|
# Padding between pages
|
||
|
set page-padding 1
|
||
|
#+END_SRC
|
||
|
|
||
|
* Bindings
|
||
|
#+BEGIN_SRC conf
|
||
|
map u scroll half-up
|
||
|
map d scroll half-down
|
||
|
|
||
|
map D toggle_page_mode
|
||
|
|
||
|
map r reload
|
||
|
map R rotate
|
||
|
map > rotate
|
||
|
map < rotate
|
||
|
|
||
|
map L zoom in
|
||
|
map H zoom out
|
||
|
|
||
|
map i recolor
|
||
|
map p print
|
||
|
|
||
|
map m toggle_statusbar
|
||
|
|
||
|
map <Space> scroll full-down
|
||
|
map <BackSpace> scroll full-up
|
||
|
#+END_SRC
|
||
|
|
||
|
* Colors
|
||
|
#+begin_src conf
|
||
|
# Base16 Gruvbox dark, soft
|
||
|
# Author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox)
|
||
|
|
||
|
set default-bg "#32302f"
|
||
|
set default-fg "#3c3836"
|
||
|
|
||
|
set statusbar-fg "#bdae93"
|
||
|
set statusbar-bg "#504945"
|
||
|
|
||
|
set inputbar-bg "#32302f"
|
||
|
set inputbar-fg "#fbf1c7"
|
||
|
|
||
|
set notification-bg "#32302f"
|
||
|
set notification-fg "#fbf1c7"
|
||
|
|
||
|
set notification-error-bg "#32302f"
|
||
|
set notification-error-fg "#fb4934"
|
||
|
|
||
|
set notification-warning-bg "#32302f"
|
||
|
set notification-warning-fg "#fb4934"
|
||
|
|
||
|
set highlight-color "#fabd2f"
|
||
|
set highlight-active-color "#83a598"
|
||
|
|
||
|
set completion-bg "#3c3836"
|
||
|
set completion-fg "#83a598"
|
||
|
|
||
|
set completion-highlight-fg "#fbf1c7"
|
||
|
set completion-highlight-bg "#83a598"
|
||
|
|
||
|
set recolor-lightcolor "#32302f"
|
||
|
set recolor-darkcolor "#ebdbb2"
|
||
|
|
||
|
set recolor "false"
|
||
|
set recolor-keephue "false"
|
||
|
#+end_src
|