Skip to content

Instantly share code, notes, and snippets.

@gwarf
Last active September 5, 2017 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gwarf/c63a17d579fc3241d297fbf7edd6ffbe to your computer and use it in GitHub Desktop.
Save gwarf/c63a17d579fc3241d297fbf7edd6ffbe to your computer and use it in GitHub Desktop.
cvim configuration file
" 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