Skip to content

Instantly share code, notes, and snippets.

@ryrych
Created January 1, 2016 20:00
Show Gist options
  • Save ryrych/895bbabd3f6c40bf7d29 to your computer and use it in GitHub Desktop.
Save ryrych/895bbabd3f6c40bf7d29 to your computer and use it in GitHub Desktop.
Basic vimrc config for learning Vim-CtrlSpace
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
" Change path if necessary
call vundle#begin('~/vim-ctrlspace-learning')
Plugin 'VundleVim/Vundle.vim'
Plugin 'szw/vim-ctrlspace'
Plugin 'NLKNguyen/papercolor-theme'
call vundle#end()
filetype plugin indent on
set t_Co=256
set background=dark
colorscheme PaperColor
set nocompatible
set hidden
set wildignore=.git,.svn,CVS,*.o,*.a,*.class,*.mo,*.la,*.so,*.obj,*.swp,*.jpg,*.png,*.xpm,*.gif,*.pyc,tags,*.tags
if has("gui_running")
" Settings for MacVim and Inconsolata font
let g:CtrlSpaceSymbols = { "File": "◯", "CTab": "▣", "Tabs": "▢" }
endif
if executable("ag")
let g:CtrlSpaceGlobCommand = 'ag -l --nocolor -g ""'
endif
let g:CtrlSpaceIgnoredFiles = '\v(tmp|temp|Godeps)[\/]'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment