Android update

This commit is contained in:
Aleksandr Lebedev 2025-02-01 15:39:49 +01:00
parent 349e41cb91
commit 720c1d126a
2 changed files with 21 additions and 11 deletions

View file

@ -3,5 +3,9 @@
;; Add Termux binaries to PATH environment
(let ((termuxpath "/data/data/com.termux/files/usr/bin"))
(setenv "PATH" (concat (getenv "PATH") ":" termuxpath))
(setq exec-path (append exec-path (list termuxpath)))))
(setq exec-path (append exec-path (list termuxpath))))
(let ((termuxlib "/data/data/com.termux/files/usr/lib"))
(setenv "PATH" (concat (getenv "PATH") ":" termuxlib))
(setq exec-path (append exec-path (list termuxlib)))
)