Skip to content

Commit

Permalink
Add a pystartup
Browse files Browse the repository at this point in the history
  • Loading branch information
kylef committed Oct 10, 2015
1 parent 29fa831 commit d376dd3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .config/fish/config.fish
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ set -x LSCOLORS Gxfxcxdxbxegedabagacad
set -x EDITOR vim

set -x PIP_REQUIRE_VIRTUALENV "true"
set -x PYTHONSTARTUP $HOME/.pystartup

alias home="git --work-tree=$HOME --git-dir=$HOME/.files.git"
7 changes: 7 additions & 0 deletions .pystartup
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env python

import rlcompleter, readline
readline.parse_and_bind('tab: complete')

import os
import sys

0 comments on commit d376dd3

Please sign in to comment.