forked from colonelpanic/dotfiles
[Emacs] Reformat init.el org use-package
This commit is contained in:
parent
0907711ab4
commit
6cb0ecd796
@ -27,32 +27,33 @@
|
||||
;; Without this, org can behave very strangely
|
||||
(use-package org
|
||||
:init
|
||||
;; Taken from https://github.com/raxod502/radian/blob/master/radian-emacs/radian-org.el
|
||||
(defun radian--org-git-version ()
|
||||
"Return the abbreviated SHA for the Org Git repo."
|
||||
(let ((default-directory (concat user-emacs-directory
|
||||
"straight/repos/org/")))
|
||||
(if (executable-find "git")
|
||||
(with-temp-buffer
|
||||
;; Returns the shortest prefix of the SHA for HEAD that is
|
||||
;; unique, down to a minimum of 4 characters (see
|
||||
;; git-rev-parse(1)).
|
||||
(call-process "git" nil '(t nil) nil
|
||||
"rev-parse" "--short" "HEAD")
|
||||
(if (> (buffer-size) 0)
|
||||
(string-trim (buffer-string))
|
||||
;; This shouldn't happen, unless somehow Org is not
|
||||
;; actually a Git repo.
|
||||
"revision unknown"))
|
||||
;; This also shouldn't happen, because how would you have
|
||||
;; gotten Org in the first place, then? But the real world
|
||||
;; sucks and we have to account for stuff like this.
|
||||
"git not available")))
|
||||
(defalias #'org-git-version #'radian--org-git-version)
|
||||
(defun org-release () "N/A")
|
||||
(provide 'org-version)
|
||||
(with-eval-after-load 'org
|
||||
(defalias #'org-git-version #'radian--org-git-version)))
|
||||
(progn
|
||||
;; Taken from https://github.com/raxod502/radian/blob/master/radian-emacs/radian-org.el
|
||||
(defun radian--org-git-version ()
|
||||
"Return the abbreviated SHA for the Org Git repo."
|
||||
(let ((default-directory (concat user-emacs-directory
|
||||
"straight/repos/org/")))
|
||||
(if (executable-find "git")
|
||||
(with-temp-buffer
|
||||
;; Returns the shortest prefix of the SHA for HEAD that is
|
||||
;; unique, down to a minimum of 4 characters (see
|
||||
;; git-rev-parse(1)).
|
||||
(call-process "git" nil '(t nil) nil
|
||||
"rev-parse" "--short" "HEAD")
|
||||
(if (> (buffer-size) 0)
|
||||
(string-trim (buffer-string))
|
||||
;; This shouldn't happen, unless somehow Org is not
|
||||
;; actually a Git repo.
|
||||
"revision unknown"))
|
||||
;; This also shouldn't happen, because how would you have
|
||||
;; gotten Org in the first place, then? But the real world
|
||||
;; sucks and we have to account for stuff like this.
|
||||
"git not available")))
|
||||
(defalias #'org-git-version #'radian--org-git-version)
|
||||
(defun org-release () "N/A")
|
||||
(provide 'org-version)
|
||||
(with-eval-after-load 'org
|
||||
(defalias #'org-git-version #'radian--org-git-version))))
|
||||
|
||||
(let ((debug-on-error t))
|
||||
(org-babel-load-file
|
||||
|
Loading…
Reference in New Issue
Block a user