Use p-strings

This commit is contained in:
2021-06-24 16:35:47 -07:00
parent 17fb3a230d
commit 9e70ad0d15

View File

@@ -46,7 +46,7 @@ def ensure_path(*paths: List[str]):
ensure_path("/usr/local/bin", "~/.dotfiles/bin", "~/.local/bin", "~/bin", "~/.emacs.d/bin")
config_dir = Path.home() / ".dotfiles" / "xonsh"
config_dir = p"~/.dotfiles/xonsh"
if (config_dir / "local.xsh").exists():
source @(config_dir / "local.xsh")