summaryrefslogtreecommitdiff
path: root/emacs/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/init.el')
-rw-r--r--emacs/init.el10
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"