Last active
September 5, 2017 13:19
-
-
Save gwarf/c63a17d579fc3241d297fbf7edd6ffbe to your computer and use it in GitHub Desktop.
cvim configuration file
This file contains 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
" cvim configuration | |
" Use local configuration | |
let configpath = "/home/baptiste/.cvimrc" | |
set localconfig | |
let homedirectory = "/home/baptiste" | |
" Hint configuration | |
let hintcharacters = "asdfghjkl;" | |
set nodimhintcharacters | |
" Hide cursor when scrolling | |
set autohidecursor | |
" Command bar location | |
let barposition = "bottom" | |
" Disable smooth page scrolling | |
set nosmoothscroll | |
" Show a list of command when pressing : | |
set completeonopen | |
" Open defaut chrome://newtab page | |
set defaultnewtabpage | |
" Search engines management | |
let searchalias i = "imdb" | |
let searchengine nar = "http://newalbumreleases.net/?s=%s" | |
let searchalias n = "nar" | |
let searchengine drive = "https://drive.google.com/drive/search?q=%s" | |
let searchalias d = "drive" | |
let searchengine github = "https://github.com/search?q=%s&ref=opensearch" | |
let searchalias g = "github" | |
let searchengine qwant = "https://www.qwant.com/?q=%s&client=opensearch" | |
let searchalias q = "qwant" | |
let searchengine webopedia = "https://www.webopedia.com/sgsearch/results?q=%s" | |
let searchalias w = "webopedia" | |
let searchengine ixquick = "https://www.ixquick.com/do/dsearch?query=%s&cat=web&pl=opensearch&language=english" | |
let searchengine i = "ixquick" | |
" This will do the same thing as above, except typing ':tabnew withbase' into to command bar | |
" without any search parameters will open https://www.dogpile.com | |
" let searchengine dogpile = "https://www.dogpile.com/search/web?q=%s" | |
let searchengine dogpile = [ "https://www.dogpile.com", "https://www.dogpile.com/search/web?q=%s" ] | |
let searchalias dp = "dogpile" | |
" List of completion engines | |
let completionengines = [ "qwant", "google", "drive", "wikipedia", "imdb", "duckduckgo", "nar", "dogpile", "github", "ixquick" ] | |
let defaultengine = "dogpile" | |
" cVim disabled on sites | |
let blacklists = [ "https://mail.google.com/*", "*://mail.google.com/*", "@https://mail.google.com/mail/*", "https://connect.cesnet.cz" ] | |
" TODO Add bookmark | |
" Default: <C-b> | |
unmap a | |
map a createBookmark | |
" Buffer management | |
unmap b | |
map b :buffer<Space> | |
" TODO Opening previously opened tab | |
" map <C-^> | |
" Opening text area outside | |
let vimcommand = 'urxvt -e vim' | |
imap <C-o> editWithVim | |
set cncpcompletion |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment