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