" .vimrc " " Created by Jeff Elkner 23 January 2006 " Last modified 11 July 2011 " " Turn on syntax highlighting and autoindenting syntax enable filetype indent on " set autoindent width to 4 spaces set et set sw=4 set smarttab " Bind key to running the python interpreter on the currently active " file. (courtesy of Steve Howell from email dated 1 Feb 2006). " The second line binds to running python3 on a GNU/Linux system, " like Ubuntu or Fedora, that use python3 to launch Python 3. map :w\|!python % map :w\|!python3 %