Created
April 23, 2018 19:19
-
-
Save mikemhenry/06c1a6b3e656b77d9ab8dbde887dea83 to your computer and use it in GitHub Desktop.
Simple ~/.vimrc file
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
" 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