diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2025-03-07 00:22:08 +0200 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2025-03-07 00:22:08 +0200 |
commit | 6e968354e4f9cad9f94b592e61a09b17a8e06210 (patch) | |
tree | df0f341fd9332b53a39aa72c4be17cdd0f7cd1c4 /zathura/zathurarc | |
parent | 40577b3f22f677c45525e7439f689a482eedbf69 (diff) |
Great new changes to X11, allacrity(just for testing), btop, nsxiv
(added key exec handler), nvim, tmux niceness, zathura configuration
massive zsh improvements. Overall a solid update, install script is
still dead tho. REGARDLESS:
Changes to be committed:
modified: X11/xinit
new file: alacritty/alacritty.toml
modified: btop/btop.conf
new file: nsxiv/exec/key-handler
modified: nvim/init.vim
new file: sxiv
modified: tmux/tmux.conf
modified: zathura/zathurarc
modified: zsh/aliases
modified: zsh/env
modified: zsh/zshrc
Diffstat (limited to 'zathura/zathurarc')
-rw-r--r-- | zathura/zathurarc | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/zathura/zathurarc b/zathura/zathurarc index c5edee3..3ff2bd0 100644 --- a/zathura/zathurarc +++ b/zathura/zathurarc @@ -13,3 +13,63 @@ set incremental-search true # Hide the toolbar at startup set guioptions none + +# Navigation +map u scroll half-up +map d scroll half-down + +# Zoom +map K zoom in +map J zoom out + +# Document Control +map r reload +map R rotate +map p print +map D toggle_page_mode + +# Font Setting +set font 'Inconsolata Normal 14' +#set font 'monospace normal 14' + +# LaTeX Synctex Support +# Uncomment the line below if you use Zathura for LaTeX PDFs and want synctex support +set synctex true + +# COLORS + +#set recolor +set recolor-lightcolor \#0a001f +set recolor-darkcolor \#ace6f0 +#set recolor-keephue +set default-bg \#0a001f +set default-fg \#ace6f0 + +set statusbar-fg \#ace6f0 +set statusbar-bg \#0a001f +set inputbar-fg \#ace6f0 +set inputbar-bg \#0a001f +set notification-error-bg \#0a001f +set notification-error-fg \#ace6f0 +set notification-warning-bg \#0a001f +set notification-warning-fg \#ace6f0 +set notification-bg \#0a001f +set notification-fg \#ace6f0 +set index-bg \#0a001f +set index-fg \#ace6f0 +set index-active-bg \#0a001f +set index-active-fg \#ace6f0 +set render-loading-bg \#0a001f +set render-loading-fg \#ace6f0 +set completion-bg \#0a001f +set completion-fg \#ace6f0 +set completion-group-bg \#0a001f +set completion-group-fg \#ace6f0 +set completion-highlight-bg \#0a001f +set completion-highlight-fg \#ace6f0 +set completion-bg \#0a001f +set completion-fg \#ace6f0 + +#set highlight-color \#ace6f0 + +set recolor-reverse-video true # true = show images normally, false = invert colors with color hue |