Skip to content

Instantly share code, notes, and snippets.

View davidmathers's full-sized avatar

David Mathers davidmathers

  • San Francisco, CA
View GitHub Profile
@davidmathers
davidmathers / vimrc_reset.vim
Created November 6, 2020 01:17
Normalize vim and neovim to the same baseline
if !has('nvim')
if &compatible
set nocompatible
endif
if !exists('g:syntax_on')
syntax enable
endif
filetype plugin indent on
set autoindent