Last active
December 23, 2019 20:38
-
-
Save robwhitaker/9bca565a8f08b884d58cebdb85e4c699 to your computer and use it in GitHub Desktop.
Config for cVim
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 | |
set autohidecursor | |
set noautofocus | |
set sortlinkhints | |
set scalehints | |
set autoupdategist | |
let searchengine duckduckgo = ["https://duckduckgo.com", "https://duckduckgo.com/?q="] | |
let searchengine ecosia = ["https://www.ecosia.org", "https://www.ecosia.org/search?q="] | |
let searchengine startpage = ["https://www.startpage.com", "https://www.startpage.com/do/search?query="] | |
let scrollduration = 700 | |
let defaultengine = "ecosia" | |
let barposition = "bottom" | |
let blacklists = ["*://cybre.space/*"] | |
map b :buffer<Space> | |
map B :bookmarks<Space> | |
map J :call nextTab<CR> | |
map K :call previousTab<CR> | |
map a :open startpage<Space> | |
map A :tabnew startpage<Space> | |
map s :open duckduckgo<Space> | |
map S :tabnew duckduckgo<Space> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment