Created
January 1, 2016 20:00
-
-
Save ryrych/895bbabd3f6c40bf7d29 to your computer and use it in GitHub Desktop.
Basic vimrc config for learning Vim-CtrlSpace
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
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