Commit 8ad408d5 authored by nimrod's avatar nimrod
Browse files

Python startup script.

Use the pythonrc Python startup script added as a submodule instead of
fiddling around with a script to build a (not really working) version
for myself.
parent 43c1cd46
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ export PATH="$HOME/Documents/Shore/ssl-ca:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"
export PATH="$HOME/.cabal/bin:$PATH"
export PATH="$HOME/Documents/bin:$PATH"
export PYTHONSTARTUP=~/.config/python/startup.py
export PYTHONSTARTUP=~/.config/pythonrc/pythonrc.py
export AWS_DEFAULT_PROFILE='shore'
export ANSIBLE_VERBOSITY=2
export ANSIBLE_COMMAND_WARNINGS=True
+0 −561

File deleted.

Preview size limit exceeded, changes collapsed.

+0 −3
Original line number Diff line number Diff line
#!/usr/bin/env python
from pprint import PrettyPrinter
pprint = PrettyPrinter().pprint
Original line number Diff line number Diff line
Subproject commit d9f2c7a9caf0076c011bbe0aa42fca641432ea57
+0 −2
Original line number Diff line number Diff line
@@ -9,8 +9,6 @@ echo Loading dconf config >> /dev/stderr
Documents/bin/dconf-load
echo Configuring Git repo >> /dev/stderr
git config --local status.showUntrackedFiles no
echo Creating Python startup file >> /dev/stderr
Documents/bin/gen-python-startup
echo Creating Bash completion scripts >> /dev/stderr
Documents/bin/gen-bash-completion
echo Adding Cron job >> /dev/stderr
Loading