summary refs log tree commit diff
path: root/emacs.d/config/fcuny-darwin.el
blob: a699cf0de3e69475cd8a0c2bd900779aaf875e44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(eval-when-compile
  (require 'use-package))

;; Set default font.
(set-face-attribute 'default nil :height 160 :weight 'normal :width 'normal)

(use-package exec-path-from-shell
  :ensure t
  :config
  (exec-path-from-shell-initialize)
  (if (fc/check-work-machine-p)
      (dolist (var '("GEM_HOME" "GEM_PATH" "MY_RUBY_HOME"))
        (unless (getenv var)
          (exec-path-from-shell-copy-env var)))))

(provide 'fcuny-darwin)