diff options
Diffstat (limited to 'ship')
| -rwxr-xr-x | ship/src/bootstrap_env_makefu | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/ship/src/bootstrap_env_makefu b/ship/src/bootstrap_env_makefu index 3088d059..188a48e7 100755 --- a/ship/src/bootstrap_env_makefu +++ b/ship/src/bootstrap_env_makefu @@ -68,8 +68,13 @@ test -r ~/TODO  && cat ~/TODO  setopt menu_complete  unsetopt correct_all +export PYTHONSTARTUP=~/.pythonrc +EOF +info 'deploying pythonrc' +cat > $HOME/.pythonrc <<EOF +import rlcompleter, readline +readline.parse_and_bind('tab:complete')  EOF -  info "deploying vim config"  if [ -e $HOME/.vim ] ; then    oldvim=$HOME/.vim.`date +%Y%M%d` | 
