Skip to content

Instantly share code, notes, and snippets.

@lppier
Created September 18, 2020 07:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lppier/a117e2f1702b36c65350987ccf73659b to your computer and use it in GitHub Desktop.
Save lppier/a117e2f1702b36c65350987ccf73659b to your computer and use it in GitHub Desktop.
.vimrc file for Python highlighting (put in ~/Users/<yourname>/.vimrc
" enable syntax highlighting
syntax enable
" show line numbers
set number
" set tabs to have 4 spaces
set ts=4
" indent when moving to the next line while writing code
set autoindent
" expand tabs into spaces
set expandtab
" when using the >> or << commands, shift lines by 4 spaces
set shiftwidth=4
" show a visual line under the cursor's current line
set cursorline
" show the matching part of the pair for [] {} and ()
set showmatch
" enable all Python syntax highlighting features
let python_highlight_all = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment