dotfiles
1

Configure Feed

Select the types of activity you want to include in your feed.

Fix IPython config

Juan Nunez-Iglesias (Jul 3, 2026, 6:33 PM +0200) a11ca03b 1181dbc2

+4 -2
+1 -1
dots
··· 46 46 "waybar": HOME / ".config" / "waybar", 47 47 "starship/starship.toml": HOME / ".config" / "starship.toml", 48 48 "keyd/default.conf": Path("/etc/keyd/default.conf"), 49 - "ipython/ipython_config.py": HOME / ".ipython/profile_default/startup/ipython_config.py" 49 + "ipython/ipython_config.py": HOME / ".ipython/profile_default/ipython_config.py" 50 50 } 51 51 52 52 REPO_DIR = Path(__file__).resolve().parent
+3 -1
ipython/ipython_config.py
··· 1 1 import datetime as dt 2 2 from pathlib import Path 3 3 4 + c = get_config() 5 + 4 6 # The name of the logfile to use. 5 7 logfile_dir = Path('~/projects/ipython-logs').expanduser() 6 8 logfile_dir.mkdir(parents=True, exist_ok=True) ··· 10 12 logfile_fn.touch() 11 13 12 14 # set the logfile 13 - c.TerminalInteractiveShell.logfile = logfile_fn 15 + c.TerminalInteractiveShell.logfile = str(logfile_fn) 14 16 15 17 16 18 # Start logging to the default log file.