use org contrib

This commit is contained in:
ndwarshuis 2019-04-24 17:24:14 -04:00
parent 4539d8198d
commit f466ec0d06
2 changed files with 6 additions and 11 deletions

View File

@ -954,8 +954,8 @@ No custom code here, but flycheck needs =sqlint= (on Arch available through the
*** modules *** modules
Org has several extensions in the form of loadable modules. =org-protocol= is used as a backend for external programs to communicate with =org-mode=. =org-habit= allows the habit todoitem which is used as a more flexible recurring task. Org has several extensions in the form of loadable modules. =org-protocol= is used as a backend for external programs to communicate with =org-mode=. =org-habit= allows the habit todoitem which is used as a more flexible recurring task.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(setq org-modules '(org-habit org-protocol)) (org-set-modules 'org-modules '(org-habit org-protocol))
(straight-use-package '(org :type built-in))
;; make sure everything else works that I have customly defined ;; make sure everything else works that I have customly defined
(require 'org-agenda) (require 'org-agenda)
(require 'org-protocol) (require 'org-protocol)

13
init.el
View File

@ -1,8 +1,3 @@
;; (require 'package)
;; (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
;; (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
;; (package-initialize)
;; init the straight package manager ;; init the straight package manager
(defvar bootstrap-version) (defvar bootstrap-version)
(let ((bootstrap-file (let ((bootstrap-file
@ -27,14 +22,14 @@
(straight-use-package 'use-package) (straight-use-package 'use-package)
;; (unless (package-installed-p 'use-package)
;; (package-refresh-contents)
;; (package-install 'use-package))
(defvar nd/conf-dir "~/.emacs.d/" (defvar nd/conf-dir "~/.emacs.d/"
"The absolute path to the EMACS configuration directory.") "The absolute path to the EMACS configuration directory.")
(defvar nd/conf-main (expand-file-name "conf.org" nd/conf-dir) (defvar nd/conf-main (expand-file-name "conf.org" nd/conf-dir)
"The absolute path the main EMACS configuration file.") "The absolute path the main EMACS configuration file.")
;; ensure we don't use built-in org mode
(use-package org :straight org-plus-contrib)
;; (straight-use-package '(org :type built-in))
(org-babel-load-file nd/conf-main) (org-babel-load-file nd/conf-main)