view python/.pythonstartup @ 26:d17e9bd25f68

Add solarized colorscheme for vim.
author Brian Neal <bgneal@gmail.com>
date Thu, 29 Oct 2015 21:14:25 -0500
parents 357906c82c1f
children
line wrap: on
line source
# python startup file
try:
   import readline
except ImportError:
   pass
else:
   import atexit
   import os
   import rlcompleter

   # tab completion
   readline.parse_and_bind('tab: complete')

   # history file
   histfile = os.path.join(os.environ['HOME'], '.pythonhistory')
   try:
       readline.read_history_file(histfile)
   except IOError:
       pass
   readline.set_history_length(1024)

   atexit.register(readline.write_history_file, histfile)
   del os, histfile, readline, rlcompleter