Last active
October 25, 2018 13:32
-
-
Save Yavor-Ivanov/47a47e3263d4de3dd355 to your computer and use it in GitHub Desktop.
cVimrc
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
" Settings | |
set nosmoothscroll | |
let autohidecursor = 1 | |
let autoupdategist = 1 | |
set noautofocus | |
let barposition = "bottom" | |
let searchlimit = 7 | |
let mapleader = " " | |
" Search engines | |
let searchengine default = "%s" | |
let searchengine youtube = "http://www.youtube.com/results?search_query=%s" | |
let searchengine devdocs = "http://devdocs.io/#q=%s" | |
let searchengine thesaurus = "http://thesaurus.com/browse/%s" | |
let searchengine google_image_search = "https://www.google.bg/search?source=lnms&tbm=isch&sa=X&ei=DU1eUqzuHMKxtAbgtoCADg&ved=0CAkQ_AUoAQ&biw=1517&bih=783&q=%s" | |
let searchengine google_translate = "http://translate.google.com/?source=osdd#en|bg|%s" | |
let searchengine amazon = "http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=%s" | |
let searchengine duckduckgo = "https://duckduckgo.com/?q=%s" | |
let defaultengine = "default" | |
" This is not really correct, but I'm changing my default search-engine | |
" from Google to DuckDuckGo and don't want to bother re-learning my keybinds. | |
let searchalias g = "duckduckgo" | |
let searchalias w = "wikipedia" | |
let searchalias y = "youtube" | |
let searchalias api = "devdocs" | |
let searchalias a = "devdocs" | |
let searchalias syn = "thesaurus" | |
let searchalias img = "google_image_search" | |
let searchalias tr = "google_translate" | |
let searchalias az = "amazon" | |
" Key bindings | |
map R reloadTabUncached | |
map r nextTab | |
map e previousTab | |
map <C-f> scrollFullPageDown | |
map <C-b> scrollFullPageUp | |
map T :open<Space> | |
map <leader>x closeTab | |
map <leader>d duplicate | |
map <leader>p lastUsedTab | |
let blacklists = ["*://trello.com/*"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment