Compare commits
No commits in common. "dddc309e9e775069ae09de320668bb3ec8667745" and "b0c7bc39482174fc87078be5bc6f665d8b595385" have entirely different histories.
dddc309e9e
...
b0c7bc3948
2 changed files with 30 additions and 36 deletions
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2023.0613.234632
|
;; Version: 2023.0607.232822
|
||||||
;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org org-bullets org-edna diminish all-the-icons olivetti form-feed org-pretty-table)
|
;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org org-bullets org-edna diminish all-the-icons olivetti form-feed org-pretty-table)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -389,7 +389,6 @@ _di_: Add inlineimages STARTUP
|
||||||
(setq org-clock-in-switch-to-state #'oni-org-maybe-change-todo-state)
|
(setq org-clock-in-switch-to-state #'oni-org-maybe-change-todo-state)
|
||||||
(setq org-extend-today-until 2)
|
(setq org-extend-today-until 2)
|
||||||
(setq org-fontify-whole-heading-line t)
|
(setq org-fontify-whole-heading-line t)
|
||||||
(setq org-fontify-quote-and-verse-blocks t)
|
|
||||||
(setq org-footnote-auto-adjust t)
|
(setq org-footnote-auto-adjust t)
|
||||||
(setq org-habit-graph-column 60)
|
(setq org-habit-graph-column 60)
|
||||||
(setq org-hide-emphasis-markers t)
|
(setq org-hide-emphasis-markers t)
|
||||||
|
@ -1213,35 +1212,6 @@ This is done by adding a ‘:hidden t’ header argument to the code block."
|
||||||
(tags-todo "TODO=\"TODO\"+#listening"
|
(tags-todo "TODO=\"TODO\"+#listening"
|
||||||
((org-agenda-overriding-header (oni-org--center-align "To Listen To")))))))
|
((org-agenda-overriding-header (oni-org--center-align "To Listen To")))))))
|
||||||
|
|
||||||
(setf (map-elt org-capture-templates "sE")
|
|
||||||
'("Questions for Emacs packages" plain (function ignore)
|
|
||||||
"- Do I want to integrate this in my configuration?
|
|
||||||
- %?
|
|
||||||
- What will it add / What advantage will it bring?
|
|
||||||
-
|
|
||||||
- How would I integrate it with my config?
|
|
||||||
- "
|
|
||||||
:empty-lines 1
|
|
||||||
:immediate-finish t
|
|
||||||
:jump-to-captured t))
|
|
||||||
(setf (map-elt org-capture-templates-contexts "sE")
|
|
||||||
'(((in-mode . "org-mode"))))
|
|
||||||
|
|
||||||
(setf (map-elt org-capture-templates "se")
|
|
||||||
'("Questions for Emacs articles" plain (function ignore)
|
|
||||||
"- What can I add to my config from this?
|
|
||||||
- %?"
|
|
||||||
:empty-lines 1
|
|
||||||
:immediate-finish t
|
|
||||||
:jump-to-captured t))
|
|
||||||
(setf (map-elt org-capture-templates-contexts "se")
|
|
||||||
'(((in-mode . "org-mode"))))
|
|
||||||
|
|
||||||
(setf (map-elt org-capture-templates "s")
|
|
||||||
'("Snippets"))
|
|
||||||
(setf (map-elt org-capture-templates-contexts "s")
|
|
||||||
'(((in-mode . "org-mode"))))
|
|
||||||
|
|
||||||
(setf (map-elt org-capture-templates "t")
|
(setf (map-elt org-capture-templates "t")
|
||||||
'("A simple TODO item." entry (file "") "* TODO %?
|
'("A simple TODO item." entry (file "") "* TODO %?
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2023.0613.184755
|
;; Version: 2022.0323.191305
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
;; it under the terms of the GNU General Public License as published by
|
;; it under the terms of the GNU General Public License as published by
|
||||||
|
@ -47,11 +47,35 @@
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(setq package-enable-at-startup nil)
|
(setq package-enable-at-startup nil)
|
||||||
|
|
||||||
;;; Disable any package archives to make sure that I can't install any packages
|
;;;###autoload (add-hook 'after-init-hook 'package-initialize)
|
||||||
;;; through ELPA. I use Guix and should install packages through there.
|
|
||||||
;; From: https://github.com/nekifirus/.emacs.d#packages-setup
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(setq package-archives nil)
|
(add-to-list 'package-archives
|
||||||
|
'("nongnu" . "https://elpa.nongnu.org/nongnu/"))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(add-to-list 'package-archives
|
||||||
|
'("melpa" . "https://melpa.org/packages/"))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(add-to-list 'package-archives
|
||||||
|
'("oni" . "https://ryuslash.org/elpa/"))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(add-to-list 'package-archives
|
||||||
|
'("vc-p4" . "https://ryuslash.gitlab.io/vc-p4/"))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(add-to-list 'package-archives
|
||||||
|
'("circe-serenity" . "https://ryuslash.gitlab.io/circe-serenity/"))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(add-to-list 'package-archives
|
||||||
|
'("org-azure-devops" . "https://ryuslash.gitlab.io/org-azure-devops/"))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
|
(add-to-list 'package-archives
|
||||||
|
'("tekuti-el" . "https://ryuslash.srht.site/tekuti-el/elpa/"))
|
||||||
|
|
||||||
(setq package-update-news-on-upload t)
|
(setq package-update-news-on-upload t)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue