Last active
November 4, 2021 11:08
-
-
Save codiac-killer/c2c317ef23f247b1fb49e94f378b21fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set smoothscroll | |
" don't allow site to focus their input fields when they load | |
set noautofocus | |
" have console on bottom | |
let barposition = "bottom" | |
" Set avialable search engines | |
let searchengine brave = 'https://search.brave.com/search?q=%s' | |
let searchengine searx = 'https://searx.be/search?q=' | |
let searchengine yewtube = 'https://www.yewtu.be/search?q=%s' | |
let searchengine osm = 'https://www.openstreetmap.org/search?query=%s' | |
" Enable them | |
let completionengines = ['searx', 'yewtube', 'osm'] | |
" set default search engine | |
let defaultengine = "searx" | |
" Remaps | |
map J nextTab | |
map K previousTab | |
map O t | |
map go :open @% | |
map gO :tabnew @% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment