summaryrefslogtreecommitdiffstats
path: root/init.org
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2019-03-16 08:58:29 -0400
committerAmin Bandali <bandali@gnu.org>2019-03-16 08:58:29 -0400
commit7bdcbaab4f4125c47778c7afc36ac468adbe6c4e (patch)
treec87210af85ab610ebb75419a52e721ee891bf326 /init.org
parent6cfe44a79c6ce99ac22df1465918f835adea0d08 (diff)
downloadconfigs-7bdcbaab4f4125c47778c7afc36ac468adbe6c4e.tar.gz
configs-7bdcbaab4f4125c47778c7afc36ac468adbe6c4e.tar.xz
configs-7bdcbaab4f4125c47778c7afc36ac468adbe6c4e.zip
[emacs] update packages
also remove the Org hack, as it’s now built into straight.el and enabled by default
Diffstat (limited to 'init.org')
-rw-r--r--init.org35
1 files changed, 0 insertions, 35 deletions
diff --git a/init.org b/init.org
index fd734b1..422af4c 100644
--- a/init.org
+++ b/init.org
@@ -873,41 +873,6 @@ system.
In short, my favourite way of life.
-First, we have to resort to a [[https://github.com/raxod502/straight.el#installing-org-with-straightel][hack]] to be able to use the correct
-latest version of Org from upstream.
-
-#+begin_src emacs-lisp
- (use-package git)
-
- (defun org-git-version ()
- "The Git version of org-mode.
- Inserted by installing org-mode or when a release is made."
- (require 'git)
- (let ((git-repo (expand-file-name
- "straight/repos/org/" user-emacs-directory)))
- (string-trim
- (git-run "describe"
- "--match=release\*"
- "--abbrev=6"
- "HEAD"))))
-
- (defun org-release ()
- "The release version of org-mode.
- Inserted by installing org-mode or when a release is made."
- (require 'git)
- (let ((git-repo (expand-file-name
- "straight/repos/org/" user-emacs-directory)))
- (string-trim
- (string-remove-prefix
- "release_"
- (git-run "describe"
- "--match=release\*"
- "--abbrev=0"
- "HEAD")))))
-
-(provide 'org-version)
-#+end_src
-
We will use the =org-plus-contrib= package to get the whole deal:
#+begin_src emacs-lisp