From d8ee8fd95c6852e1d86c72e8ec29ac9c4d26c3bf Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Thu, 29 Oct 2020 16:47:28 +0100 Subject: [PATCH] [Zathura] new configuration file for Zathura MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This configuration file for Zathura adapts its keybindings to the bépo layout, with some tweaks on my part to make it more consistent. --- .config/zathura/zathurarc | 118 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 .config/zathura/zathurarc diff --git a/.config/zathura/zathurarc b/.config/zathura/zathurarc new file mode 100644 index 0000000..760748b --- /dev/null +++ b/.config/zathura/zathurarc @@ -0,0 +1,118 @@ +# -*- mode: conf -*- +set selection-clipboard clipboard + +set incremental-search true +set search-hadjust true + +set scroll-page-aware true +set statusbar-home-tilde true + +set synctex-editor-command 'emacsclient -c' + +set show-directories false + +# Theme +set default-bg '#2e3440' +set default-fg '#eceff4' +set completion-bg '#2e3440' +set completion-fg '#eceff4' +set completion-group-bg '#2e3440' +set completion-group-fg '#eceff4' +set completion-highlight-bg '#8fbcbb' +set completion-highlight-fg '#eceff4' +set inputbar-bg '#2e3440' +set inputbar-fg '#eceff4' + +set highlight-active-color '#5e81ac' +set highlight-color '#8fbcbb' + +set render-loading-bg '#2e3440' +set render-loading-fg '#eceff4' +set statusbar-bg '#2e3440' +set statusbar-fg '#eceff4' +set scrollbar-bg '#2e3440' +set scrollbar-fg '#eceff4' + +set recolor true +set recolor-darkcolor '#eceff4' +set recolor-lightcolor '#2e3440' +set recolor-keephue true + +set guioptions "" + +# keybindings +unmap a +unmap +map c scroll left +map C scroll full-left +map scroll half-left +unmap +map abort +unmap h +unmap H +unmap j +unmap J +unmap +unmap k +unmap K +unmap +unmap l +unmap L +map print +unmap r +unmap R +unmap +map r scroll right +map R scroll full-right +map scroll half-right +unmap s +map s scroll up +map S navigate previous +map scroll half-up +map scroll page-top +unmap t +unmap +map t scroll down +map T navigate next +map scroll half-down +map scroll page-bottom +unmap +map w adjust_window width +map W adjust_window best-fit +unmap y +unmap +map rotate rotate-ccw +map rotate rotate-cw +map recolor +unmap +map reload +map jumplist backward +map jumplist forward +map change_mode index +map change_mode presentation + +# Presentation mode +unmap presentation +map presentation change_mode normal + +# Fullscreen mode +unmap fullscreen J +unmap fullscreen K +map fullscreen s navigate previous +map fullscreen t navigate next +map fullscreen change_mode normal + +# Index mode +map index c navigate_index collapse +map index C navigate_index collapse-al +unmap index h +unmap index H +unmap index j +unmap index k +unmap index l +unmap index L +map index r navigate_index expand +map index R navigate_index expand-all +map index s navigate_index up +map index t navigate_index down +map fullscreen change_mode normal