From 5ab643496b8af79cacdaf551d54e6d9db8d95e56 Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Fri, 1 May 2026 04:19:17 -0700 Subject: [PATCH 1/2] Update exec-path --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 69a6578..7c67fc0 100644 --- a/init.el +++ b/init.el @@ -7,7 +7,7 @@ ;; Setup PATH (dolist (file '("/usr/local/sbin" "~/.local/bin" "~/.ghcup/bin" "/usr/bin/site_perl" "/usr/bin/vendor_perl" - "/usr/bin/core_perl")) + "/usr/bin/core_perl" "/usr/share/pyenv/plugins/pyenv-virtualenv/shims")) (add-to-list 'exec-path (directory-file-name (expand-file-name file)))) From 15ab83fde7cf19921050b1c09ac9ad35d8999165 Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Fri, 1 May 2026 04:23:22 -0700 Subject: [PATCH 2/2] Update pyenv stuff --- init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 7c67fc0..5501760 100644 --- a/init.el +++ b/init.el @@ -7,7 +7,9 @@ ;; Setup PATH (dolist (file '("/usr/local/sbin" "~/.local/bin" "~/.ghcup/bin" "/usr/bin/site_perl" "/usr/bin/vendor_perl" - "/usr/bin/core_perl" "/usr/share/pyenv/plugins/pyenv-virtualenv/shims")) + "/usr/bin/core_perl" + "/usr/share/pyenv/plugins/pyenv-virtualenv/shims" + "~/.pyenv/shims")) (add-to-list 'exec-path (directory-file-name (expand-file-name file))))