From 17b278d604f913b49d77778aebe4b2057df337dc Mon Sep 17 00:00:00 2001 From: rearman Date: Thu, 11 Jun 2026 10:50:10 -0400 Subject: [PATCH] Add path for termux on android --- early-init.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/early-init.el b/early-init.el index 81450d7..b9bc521 100644 --- a/early-init.el +++ b/early-init.el @@ -18,6 +18,11 @@ (lambda () (setq gc-cons-threshold 800000))) +(when (eq system-type 'android) + (let ((termux-path "/data/data/com.termux/files/usr/bin")) + (setenv "PATH" (format "%s:%s" termux-path)) + (push termux-path exec-path))) + (setq inhibit-startup-screen t inhibit-startup-buffer-menu t server-client-instructions nil -- 2.39.5