exec-path-from-shell
2023年8月21日 2023年11月17日
为在Emacs中执行Shell命令提供支持
说明
- Shell可执行的命令,因为环境变量的缺失,在Emacs中无法正确执行;除非从终端运行Emacs,继承Shell环境变量
- 作者Purcell是Emacs博主, 很多人参考他的Emacs配置
exec-path-from-shell-安装
1(use-package exec-path-from-shell 2 :ensure t 3 :init 4 (when (memq window-system '(mac ns x)) 5 (exec-path-from-shell-initialize)) 6 )