From 8a54a149bb9fbb0f655df6f34e7b016dddfe6746 Mon Sep 17 00:00:00 2001 From: ene Date: Sun, 12 Feb 2023 17:44:45 +0100 Subject: Feat(home-manager): Add python xdg-settings --- home-manager/python/pythonrc | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 home-manager/python/pythonrc (limited to 'home-manager/python/pythonrc') diff --git a/home-manager/python/pythonrc b/home-manager/python/pythonrc new file mode 100644 index 00000000..38c48e0f --- /dev/null +++ b/home-manager/python/pythonrc @@ -0,0 +1,11 @@ +import os +import atexit +import readline + +history = os.path.join(os.environ['XDG_CACHE_HOME'], 'python_history') +readline.read_history_file(history) + +def write_history(): + readline.write_history_file(history) + +atexit.register(write_history) -- cgit 1.4.1