From 7ce9d50a43ba0c91c30472247bec5389a562b649 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 2 Jul 2016 22:14:58 +0300 Subject: add .pythonrc --- .bashrc | 2 ++ .pythonrc | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 .pythonrc diff --git a/.bashrc b/.bashrc index fab70be..4d43a21 100644 --- a/.bashrc +++ b/.bashrc @@ -360,3 +360,5 @@ runcpp() ( g++ -std=c++14 -Wall -Wextra "${src_files[@]}" && ./a.exe popd > /dev/null && rm -rf "$build_dir" ) + +export PYTHONSTARTUP=~/.pythonrc diff --git a/.pythonrc b/.pythonrc new file mode 100644 index 0000000..23b7e11 --- /dev/null +++ b/.pythonrc @@ -0,0 +1,2 @@ +import readline, rlcompleter +readline.parse_and_bind("tab:complete") -- cgit v1.2.3