From ee0e8f2361dca7810a860aac448c4dfaf36accb1 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Thu, 22 Jul 2021 12:04:05 +0200 Subject: Updated qutebrowser to use searx instead of duckduckgo --- config/qutebrowser/config.py | 4 ++-- config/vim/vimrc | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) (limited to 'config') diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index 831c3e1..2768365 100644 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -27,8 +27,8 @@ c.aliases = { c.url.start_pages = ['https://searx.cacharle.xyz'] c.url.searchengines = { - # 'DEFAULT': 'https://searx.cacharle.xyz?q={}', - 'DEFAULT': 'https://duckduckgo.com/?q={}', + 'DEFAULT': 'https://searx.cacharle.xyz?q={}', + # 'DEFAULT': 'https://duckduckgo.com/?q={}', 'd': 'https://duckduckgo.com/?q={}', 'g': 'https://google.com/?q={}', 'y': 'https://www.youtube.com/results?search_query={}', diff --git a/config/vim/vimrc b/config/vim/vimrc index 13e5220..7d2441b 100644 --- a/config/vim/vimrc +++ b/config/vim/vimrc @@ -272,6 +272,7 @@ augroup vimrc_files autocmd Filetype vim setlocal foldmethod=marker " vim fold method to marker autocmd FileType haskell set formatprg=stylish-haskell autocmd FileType lisp,html,css,htmldjango setlocal shiftwidth=2 + autocmd Filetype markdown nnoremap r :execute 'silent !pandoc % -o %:r.pdf &' \| redraw! \| echom 'Converting to pdf: ' . expand('%:r') . '.pdf' augroup END " }}} @@ -334,5 +335,3 @@ nnoremap ss :setlocal spell! hi link juliaFunctionCall Identifier hi link juliaParDelim Delimiter - -autocmd Filetype markdown nnoremap r :execute 'silent !pandoc % -o %:r.pdf &' \| redraw! \| echom 'Converting to pdf: ' . expand('%:r') . '.pdf' -- cgit