add git, qutebrowser and zathura configs

This commit is contained in:
Julin S 2021-10-04 22:32:00 +05:30
parent fba18da432
commit 2b4a99bd07
8 changed files with 40 additions and 2 deletions

View File

@ -105,8 +105,9 @@
((?_ ?+) . ?\x208a) ; ₊ (duplicate of +s)
((?_ ?-) . ?\x208b) ; ₋ (duplicate of -s)
((?_ ?=) . ?\x208c) ; ₌
((?_ ?() . ?\x208d) ; ₍
((?_ ?)) . ?\x208e) ; ₎
((?_ ?\() . ?\x208d) ; ₍
((?_ ?\)) . ?\x208e) ; ₎
; Italic letters (resemble italics syntax in emacs org-mode)

2
git/.gitconfig Normal file
View File

@ -0,0 +1,2 @@
[core]
editor = vim

1
git/README.md Normal file
View File

@ -0,0 +1 @@
Place `.gitconfig` in `$HOME`.

1
qutebrowser/README.md Normal file
View File

@ -0,0 +1 @@
Place `config.py` in `$HOME/.config/qutebrowser/`.

18
qutebrowser/config.py Normal file
View File

@ -0,0 +1,18 @@
# References:
# - https://github.com/The-Compiler/dotfiles/blob/master/qutebrowser/config.py
# - https://qutebrowser.org/doc/help/configuring.html#configpy
## Load autoconfig.yml as set from browser UI
config.load_autoconfig()
c.new_instance_open_target = 'window'
#c.downloads.position = 'bottom'
## Shorthand to choose search engine
c.url.searchengines['g'] = 'https://www.google.com/search?q={}'
c.url.searchengines['w'] = 'https://en.wikipedia.org/w/index.php?search={}'
## Set external editor
c.editor.command = ['emacs', '{}']
#c.content.javascript.enabled = False

View File

@ -2,6 +2,7 @@
HOME_PATH="/home/user/"
cp git/.gitconfig $HOME_PATH
cp emacs/.emacs $HOME_PATH
cp tmux/.tmux.conf $HOME_PATH
@ -24,3 +25,9 @@ cp i3status/config $HOME_PATH/.config/i3/
mkdir -p $HOME_PATH/.config/nvim/
cp nvim/init.vim $HOME_PATH/.config/nvim/
mkdir -p $HOME_PATH/.config/qutebrowser/
cp qutebrowser/config.py $HOME_PATH/.config/qutebrowser/
mkdir -p $HOME_PATH/.config/zathura/
cp zathura/zathurarc.py $HOME_PATH/.config/zathura/

1
zathura/README.md Normal file
View File

@ -0,0 +1 @@
Place `zathurarc` in `$HOME/.config/zathura`.

7
zathura/zathurarc Normal file
View File

@ -0,0 +1,7 @@
# https://askubuntu.com/questions/472540/is-there-a-pdf-reader-allowing-me-to-change-background-color-of-arxiv-pdfs
#set recolor true
#set recolor-darkcolor "#dcdccc"
#set recolor-lightcolor "#1f1f1f"
set window-title-basename "true"
set selection-clipboard "clipboard"