diff options
| author | Blaise Thompson <blaise@untzag.com> | 2019-12-08 23:01:06 -0600 | 
|---|---|---|
| committer | Blaise Thompson <blaise@untzag.com> | 2019-12-08 23:01:06 -0600 | 
| commit | 4e23ff5069949a0d41a24b44ce0a4da382af262e (patch) | |
| tree | 771396793a40fb9268aed03eec8d644535976182 /emacs | |
| parent | 44d740be084cf93b7dbaf3328d39f414cf9095d5 (diff) | |
2019-12-08 23:01
Diffstat (limited to 'emacs')
| -rw-r--r-- | emacs/init.el | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/emacs/init.el b/emacs/init.el index 00ae3a0..9536b5e 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -44,6 +44,13 @@  ;; packages --------------------------------------------------------------------------------------- +;; exec-path-from-shell +;; must be first as this populates environment variables +(use-package exec-path-from-shell +  :ensure t +  ) +(exec-path-from-shell-initialize) +  ;; company  (use-package company    :ensure t @@ -171,6 +178,9 @@  (load-file "~/source/dotfiles/emacs/color-theme-tomorrow.el")  (color-theme-tomorrow-night) +(set-face-attribute 'highlight nil +  :background "#373b41" +  )  (set-face-attribute 'helm-selection nil    :background "#373b41"    :foreground "#c5c8c6" | 
