Skip to content

Instantly share code, notes, and snippets.

@faustinoaq
Last active September 25, 2017 22:47
Show Gist options
  • Save faustinoaq/d8a093677184b62e0f4a23114d1189e6 to your computer and use it in GitHub Desktop.
Save faustinoaq/d8a093677184b62e0f4a23114d1189e6 to your computer and use it in GitHub Desktop.
Minimal Vim configuration
set number
set nowrap
set expandtab
set shiftwidth=2
set tabstop=2
set mouse=a
call plug#begin('~/.vim/plugged')
Plug 'kien/ctrlp.vim'
call plug#end()
let g:ctrlp_map = '<c-p>'
let g:ctrlp_cmd = 'CtrlP'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment