Skip to content

Instantly share code, notes, and snippets.

@suvirbhargav
Created December 23, 2016 16:28
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 suvirbhargav/430857056763ea727a4518ab1888172b to your computer and use it in GitHub Desktop.
Save suvirbhargav/430857056763ea727a4518ab1888172b to your computer and use it in GitHub Desktop.
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#rc()
" This is the Vundle package, which can be found on GitHub.
" For GitHub repos, you specify plugins using the
" 'user/repository' format
Plugin 'gmarik/vundle'
" We could also add repositories with a ".git" extension
Plugin 'scrooloose/nerdtree.git'
Plugin 'Valloric/YouCompleteMe'
Bundle 'https://github.com/freeo/vim-kalisi'
let g:ycm_global_ycm_extra_conf = "/home/username/.vim/bundle/YouCompleteMe/third_party/ycmd/cpp/ycm/.ycm_extra_conf.py"
let g:ycm_key_list_select_completion=[]
let g:ycm_key_list_previous_completion=[]
set number
colorscheme kalisi
"set background=light
" or
set background=dark
" " if you don't set the background, the light theme will be used
"
" Now we can turn our filetype functionality back on
filetype plugin indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment