So I've been trying to learn and use both Emacs and Org-mode for a while and it has been going pretty well but I am certainly a beginner in these topics including Emacs Lisp.
I found this really good-looking org package called org-drill and I've been struggling to get it running. I initially tried what it said in the installation manual, as in changing the org default variables and ticking the box where it says dril... that didn't work. I tried googling for a bit and I figured that maybe I don't have contrib packages installed. I tried doing what was given as the answer here: org-plus-contrib and org with `require` or `use-package` again, to no avail. I tried manually searching for the package org-plus-contrib and I couldn't find it. In my init.el I have this:
;; ELPA
(setq package-user-dir (concat dotfiles-dir "elpa"))
(require 'package)
(dolist (source '(("melpa" . "http://melpa.org/packages/")
("marmalade" . "http://marmalade-repo.org/packages/")
("org" . "http://orgmode.org/elpa/")
("elpa" . "http://tromey.com/elpa/")))
(add-to-list 'package-archives source t))
(package-initialize)
So as I said, installing org-plus-contrib doesn't work. Neither does manually searching for it. Is it already installed? Am I missing something? Requiring org-drill in any manner doesn't work either. Do I have to manually include the contrib folder? I tried searching where it is but that didn't work either. I'm just not sure where to look next. Any suggestions would be brilliant.
Thanks a lot.