Add homebrew.el

This commit is contained in:
Jeremy Dormitzer 2021-03-03 09:27:44 -05:00
parent 32588d9d39
commit 1dcc953d33
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,9 @@
;; -*- lexical-binding: t; -*-
;; An Emacs interface to the Homebrew package manager
(use-package homebrew
:straight (:host github :repo "jdormit/homebrew.el")
:if (executable-find "brew")
:defer t)
(provide 'init-homebrew)

View File

@ -88,6 +88,7 @@
(require 'init-email)
(require 'init-kubernetes)
(require 'init-epub)
(require 'init-homebrew)
(when (file-exists-p custom-file)
(load custom-file 'noerror 'nomessage))