Add PythonStartup file
This commit is contained in:
parent
2f89bd5bd2
commit
56620048e9
@ -10,6 +10,7 @@ ln -s ~/.config/nvim ~/.vim
|
|||||||
ln -s ~/.config/nvim/init.vim ~/.vimrc
|
ln -s ~/.config/nvim/init.vim ~/.vimrc
|
||||||
ln -s $(pwd)/zshrc ~/.zshrc
|
ln -s $(pwd)/zshrc ~/.zshrc
|
||||||
ln -s $(pwd)/tyrel.zsh-theme ~/.oh-my-zsh/themes/tyrel.zsh-theme
|
ln -s $(pwd)/tyrel.zsh-theme ~/.oh-my-zsh/themes/tyrel.zsh-theme
|
||||||
|
ln -s $(pwd)/pythonstartup.py ~/.pythonstartup.py
|
||||||
|
|
||||||
# Setup vim
|
# Setup vim
|
||||||
mkdir -p ~/.vim/bundle
|
mkdir -p ~/.vim/bundle
|
||||||
|
3
pythonstartup.py
Normal file
3
pythonstartup.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import sys
|
||||||
|
import pprint
|
||||||
|
sys.displayhook = pprint.pprint
|
2
vimrc
2
vimrc
@ -114,3 +114,5 @@ if filereadable($HOME . "/.vimrc.local")
|
|||||||
source ~/.vimrc.local
|
source ~/.vimrc.local
|
||||||
endif
|
endif
|
||||||
set background=dark
|
set background=dark
|
||||||
|
let NERDTreeIgnore = ['\.pyc$']
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user