Skip to content

Instantly share code, notes, and snippets.

@mikemhenry
Created April 23, 2018 19:19
Show Gist options
  • Save mikemhenry/06c1a6b3e656b77d9ab8dbde887dea83 to your computer and use it in GitHub Desktop.
Save mikemhenry/06c1a6b3e656b77d9ab8dbde887dea83 to your computer and use it in GitHub Desktop.
Simple ~/.vimrc file
" This file controls vim settings
" Adds line numbers
set nu
" Turn on syntax highlighting
syntax on
" Tab things
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set autoindent
" More python IDE things
filetype on
filetype plugin on
filetype indent plugin on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment