diff options
author | Ben Sima <ben@bsima.me> | 2020-04-16 21:30:51 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-16 21:30:51 -0700 |
commit | 8c92bc399732c02721ed5432815b95c818e1b90b (patch) | |
tree | afc2d4849dc9fc70f9a328ad263fc0487874714a /lib | |
parent | db05fc6f13b9bb87b0c965e393d369ffa677bcd7 (diff) |
Add python startup files
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common.nix | 9 | ||||
-rw-r--r-- | lib/pythonrc | 15 |
2 files changed, 24 insertions, 0 deletions
diff --git a/lib/common.nix b/lib/common.nix index 24e53e0..99cdbd8 100644 --- a/lib/common.nix +++ b/lib/common.nix @@ -18,6 +18,7 @@ in LEDGER_FILE = "${homedir}/.hledger.journal"; XTERM_LOCALE = locale; LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive"; + PYTHONSTARTUP = "${homedir}/.pythonrc"; }; # From the command line: @@ -33,6 +34,14 @@ in source = ./hledger.journal; target = ".hledger.journal"; }; + pythonrc = { + source = ./pythonrc; + target = ".pythonrc"; + }; + pdbrc = { + source = ./pythonrc; + target = ".pdbrc"; + }; }; }; diff --git a/lib/pythonrc b/lib/pythonrc new file mode 100644 index 0000000..ec59d2b --- /dev/null +++ b/lib/pythonrc @@ -0,0 +1,15 @@ +import os +import pdb +import pprint +import rlcompleter, readline +import sys + +# enable tab completion +readline.parse_and_bind("tab: complete") + +# also get tab completion in pdb +pdb.Pdb.complete = rlcompleter.Completer(locals()).complete + +# prettyprint with p() +pp = pprint.PrettyPrinter(indent=4, width=80) +p = pp.pprint |