Skip to content

Instantly share code, notes, and snippets.

View brendonhc's full-sized avatar
🚀

Brendon Hudson brendonhc

🚀
View GitHub Profile
@brendonhc
brendonhc / vimrc
Last active August 30, 2018 16:31
Basic / Simple vimrc config file
set nocompatible
set encoding=utf-8
set hidden
filetype plugin indent on
syntax on
set synmaxcol=2048 " Don't syntax highlight super-long lines (for performance)
set autoindent " automatically indent lines and try to do it intelligently
set smartindent
set backspace=indent,eol,start " backspace behaves 'normally'