From 2a834acfdeaded3d4c2065d40e56e503dc4a7a54 Mon Sep 17 00:00:00 2001 From: Thomas Schneider Date: Tue, 26 Mar 2019 01:16:44 +0100 Subject: Emacs: Fix environment on macOS --- dot.emacs.d/init.el | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'dot.emacs.d/init.el') diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index 2e14781..1e18f21 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -45,6 +45,12 @@ (display-time-mode) (display-battery-mode) +(when (eq system-type 'darwin) + (use-package exec-path-from-shell + :ensure t + :init (exec-path-from-shell-initialize)) + (setenv "LANG" "de_DE.UTF-8")) + (use-package yaml-mode :mode "\\.yml\\'") -- cgit v1.2.3