diff --git a/emacs.d/lsp.el b/emacs.d/lsp.el index 0724a1c..59e2ff2 100644 --- a/emacs.d/lsp.el +++ b/emacs.d/lsp.el @@ -14,8 +14,13 @@ :init (global-flycheck-mode)) +(when (eq system-type 'darwin) + (use-package exec-path-from-shell ; Needed for MacOS with flycheck + :init + (exec-path-from-shell-initialize))) + (use-package company - :hook + :init (global-company-mode)) (use-package helm-lsp)