Add PythonStartup file

This commit is contained in:
Tyrel Souza 2017-01-10 10:40:39 -05:00
parent 2f89bd5bd2
commit 56620048e9
No known key found for this signature in database
GPG Key ID: 2EECB5087209E6A5
4 changed files with 7 additions and 0 deletions

View File

@ -10,6 +10,7 @@ ln -s ~/.config/nvim ~/.vim
ln -s ~/.config/nvim/init.vim ~/.vimrc
ln -s $(pwd)/zshrc ~/.zshrc
ln -s $(pwd)/tyrel.zsh-theme ~/.oh-my-zsh/themes/tyrel.zsh-theme
ln -s $(pwd)/pythonstartup.py ~/.pythonstartup.py
# Setup vim
mkdir -p ~/.vim/bundle

3
pythonstartup.py Normal file
View File

@ -0,0 +1,3 @@
import sys
import pprint
sys.displayhook = pprint.pprint

2
vimrc
View File

@ -114,3 +114,5 @@ if filereadable($HOME . "/.vimrc.local")
source ~/.vimrc.local
endif
set background=dark
let NERDTreeIgnore = ['\.pyc$']

1
zshrc
View File

@ -69,3 +69,4 @@ source $HOME/.profile
if [ -e $HOME/.credentials ];then
source $HOME/.credentials
fi
export PYTHONSTARTUP=$HOME/.pythonstartup.py