added pbcopy package in osx mode

This commit is contained in:
Daniel Wu 2015-02-06 23:35:46 -05:00 committed by syl20bnr
parent 418870de12
commit b08f993b34

12
contrib/osx/packages.el Normal file
View file

@ -0,0 +1,12 @@
(defvar osx-packages
'(
pbcopy
)
"List of all packages to install and/or initialize. Built-in packages
which require an initialization must be listed explicitly in the list.")
(defun osx/init-pbcopy ()
(use-package pbcopy
:init
(unless (display-graphic-p)
(turn-on-pbcopy))))