all repos — nixfiles @ b047b095375db5145ee2328b02346c19fc0de246

System and user configuration, managed by nix and home-manager

Emacs: remove exec-path-from-shell. Not necessary with home-manager

Alan Pearce
commit

b047b095375db5145ee2328b02346c19fc0de246

parent

2ccac55456347fa2560c64b9c201c5a1f0478c0a

2 files changed, 0 insertions(+), 10 deletions(-)

jump to
M user/emacs/.emacs.d/main.eluser/emacs/.emacs.d/main.el
@@ -8,14 +8,6 @@ (require 'use-package)
(setq use-package-expand-minimally t)) (setq use-package-always-demand (daemonp)) -(use-package exec-path-from-shell - :if (eq system-type 'darwin) - :commands (exec-path-from-shell-initialize) - :custom ((exec-path-from-shell-arguments nil) - (exec-path-from-shell-debug t)) - :init (progn - (exec-path-from-shell-initialize))) - ;;; Customize (setq custom-file "~/.emacs.d/custom.el")
M user/modules/emacs.nixuser/modules/emacs.nix
@@ -138,8 +138,6 @@ wgrep-ag
ws-butler which-key yaml-mode - ] ++ lib.optionals stdenv.isDarwin [ - exec-path-from-shell ] ++ lib.optionals (!stdenv.isDarwin) [ pkgs.mu ]);