From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lawrence Bottorff Subject: install confusion Date: Mon, 22 Apr 2019 23:50:08 -0500 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="0000000000007a0a0805872b5291" Return-path: Received: from eggs.gnu.org ([209.51.188.92]:34943) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hInYn-0008HM-Ud for emacs-orgmode@gnu.org; Tue, 23 Apr 2019 01:01:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hInNw-0003lv-8c for emacs-orgmode@gnu.org; Tue, 23 Apr 2019 00:50:25 -0400 Received: from mail-lj1-x230.google.com ([2a00:1450:4864:20::230]:45973) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hInNv-0003eg-Te for emacs-orgmode@gnu.org; Tue, 23 Apr 2019 00:50:24 -0400 Received: by mail-lj1-x230.google.com with SMTP id y6so12183140ljd.12 for ; Mon, 22 Apr 2019 21:50:23 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode Mailinglist --0000000000007a0a0805872b5291 Content-Type: text/plain; charset="UTF-8" I've got this in my init, which is in an org file with embedded elisp blocks: (use-package org-plus-contrib :defer t :ensure t ) then right after I have (use-package org :ensure t :bind (("C-c a" . org-agenda) ("C-c c" . org-capture) ("C-c l" . org-store-link)) :config (setq org-ellipsis " ") . . . ) where the use-package org form has extensive config info in it. Am I wrong with having both? In my ELPA directory I only see org-plus-contrib-20... which has such things as org.el. I'm using "https://orgmode.org/elpa/ BTW. LB --0000000000007a0a0805872b5291 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
I'v= e got this in my init, which is in an org file with embedded elisp blocks:<= div>
(use-package org-plus-contrib
=C2=A0 :def= er t
=C2=A0 :ensure t
=C2=A0 )

then right after I have=C2=A0

(use-pac= kage org
=C2=A0 =C2=A0 :ensure t
=C2=A0 =C2=A0 :bind ((= "C-c a" . org-agenda)
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0("C-c c" . org-capture)
=C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0("C-c l" . org-store-link))
=C2=A0 = =C2=A0 :config
=C2=A0 =C2=A0 (setq org-ellipsis " ")
=C2=A0 =C2=A0. . .
)

w= here the use-package org form has extensive config info in it. Am I wrong w= ith having both? In my ELPA directory I only see org-plus-contrib-20... whi= ch has such things as org.el. I'm using=C2=A0"https://orgmode.org/elpa/ BTW.

LB
--0000000000007a0a0805872b5291-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim Cross Subject: Re: install confusion Date: Tue, 23 Apr 2019 17:47:48 +1000 Message-ID: <871s1tb1sr.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:34440) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hIq9k-0002kj-O2 for emacs-orgmode@gnu.org; Tue, 23 Apr 2019 03:47:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hIq9j-0003Tc-J1 for emacs-orgmode@gnu.org; Tue, 23 Apr 2019 03:47:56 -0400 Received: from mail-pf1-x433.google.com ([2607:f8b0:4864:20::433]:33917) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hIq9j-0003T3-CD for emacs-orgmode@gnu.org; Tue, 23 Apr 2019 03:47:55 -0400 Received: by mail-pf1-x433.google.com with SMTP id b3so7057543pfd.1 for ; Tue, 23 Apr 2019 00:47:55 -0700 (PDT) Received: from tim-desktop (2001-44b8-31f2-bb00-fdca-40b4-50e0-877d.static.ipv6.internode.on.net. [2001:44b8:31f2:bb00:fdca:40b4:50e0:877d]) by smtp.gmail.com with ESMTPSA id n65sm17402022pga.92.2019.04.23.00.47.51 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 23 Apr 2019 00:47:52 -0700 (PDT) In-reply-to: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org The org-plus-contrib package is a little 'odd' in that the name of the package is not the name of the library being installed. To get around this, I have a use-package witht he following form (use-package org :pin org :ensure org-plus-contrib :init ....) Note the :ensure line. Basically, this tells use-package to install org, but from the org-plus-contrib package. HTH Tim Lawrence Bottorff writes: > I've got this in my init, which is in an org file with embedded elisp > blocks: > > (use-package org-plus-contrib > :defer t > :ensure t > ) > > then right after I have > > (use-package org > :ensure t > :bind (("C-c a" . org-agenda) > ("C-c c" . org-capture) > ("C-c l" . org-store-link)) > :config > (setq org-ellipsis " ") > . . . > ) > > where the use-package org form has extensive config info in it. Am I wrong > with having both? In my ELPA directory I only see org-plus-contrib-20... > which has such things as org.el. I'm using "https://orgmode.org/elpa/ BTW. > > LB -- Tim Cross