diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-07-22 12:04:05 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-07-22 12:04:05 +0200 |
| commit | ee0e8f2361dca7810a860aac448c4dfaf36accb1 (patch) | |
| tree | c12885dcc58f85e169fa6818e15857a41e4e31cc | |
| parent | 105fd6622329e0fc42a765fe57bddf2c998a69d4 (diff) | |
| download | dotfiles-ee0e8f2361dca7810a860aac448c4dfaf36accb1.tar.gz dotfiles-ee0e8f2361dca7810a860aac448c4dfaf36accb1.tar.bz2 dotfiles-ee0e8f2361dca7810a860aac448c4dfaf36accb1.zip | |
Updated qutebrowser to use searx instead of duckduckgo
| -rw-r--r-- | config/qutebrowser/config.py | 4 | ||||
| -rw-r--r-- | config/vim/vimrc | 3 |
2 files changed, 3 insertions, 4 deletions
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 <leader>r :execute 'silent !pandoc % -o %:r.pdf &' \| redraw! \| echom 'Converting to pdf: ' . expand('%:r') . '.pdf'<CR> augroup END " }}} @@ -334,5 +335,3 @@ nnoremap <leader>ss :setlocal spell!<CR> hi link juliaFunctionCall Identifier hi link juliaParDelim Delimiter - -autocmd Filetype markdown nnoremap <leader>r :execute 'silent !pandoc % -o %:r.pdf &' \| redraw! \| echom 'Converting to pdf: ' . expand('%:r') . '.pdf'<CR> |
