2015-06-03 02:06:41 +00:00
|
|
|
;;; config.el --- Org configuration File for Spacemacs
|
|
|
|
;;
|
2020-09-16 21:34:40 +00:00
|
|
|
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
|
2015-06-03 02:06:41 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
|
|
|
;;; License: GPLv3
|
|
|
|
|
2019-07-26 20:33:10 +00:00
|
|
|
;; Dumper
|
|
|
|
|
|
|
|
(defun org/pre-dump ()
|
|
|
|
(spacemacs/dump-modes '(org-mode)))
|
|
|
|
|
2015-06-03 02:06:41 +00:00
|
|
|
;; Variables
|
|
|
|
|
2017-06-21 10:56:44 +00:00
|
|
|
(defvar org-want-todo-bindings nil
|
|
|
|
"If non-nil, evil-org's todo bindings are activated.")
|
|
|
|
|
2016-09-24 01:06:57 +00:00
|
|
|
(defvar org-enable-bootstrap-support nil
|
|
|
|
"If non-nil Twitter Bootstrap related packages are configured.")
|
|
|
|
|
2015-06-03 02:06:41 +00:00
|
|
|
(defvar org-enable-github-support nil
|
2020-01-13 18:12:25 +00:00
|
|
|
"If non-nil GitHub related packages are configured.")
|
2015-08-18 22:27:49 +00:00
|
|
|
|
2016-06-02 02:05:46 +00:00
|
|
|
(defvar org-enable-reveal-js-support nil
|
|
|
|
"If non-nil, enable export to reveal.js.")
|
2015-09-09 11:49:43 +00:00
|
|
|
|
2016-06-14 09:35:54 +00:00
|
|
|
(defvar org-projectile-file "TODOs.org"
|
|
|
|
"The file to store project TODOs in. If this is a relative
|
|
|
|
path, one file per project is used (and the path is relative to
|
|
|
|
the project root). If it an absolute path, one global file is
|
|
|
|
used.")
|
|
|
|
|
2016-09-07 03:10:13 +00:00
|
|
|
(defvar org-enable-org-journal-support nil
|
|
|
|
"If non-nil org-journal is configured.")
|
2017-10-09 10:30:17 +00:00
|
|
|
|
2019-02-09 23:02:36 +00:00
|
|
|
(defvar org-enable-sticky-header nil
|
|
|
|
"If non-nil org-sticky-header is configured.")
|
|
|
|
|
2017-10-09 10:30:17 +00:00
|
|
|
(defvar org-enable-hugo-support nil
|
|
|
|
"If non-nil, Hugo (https://gohugo.io) related packages are configured.")
|
2018-08-24 17:42:49 +00:00
|
|
|
|
|
|
|
(defvar org-enable-trello-support nil
|
|
|
|
"If non-nil org-trello is configured")
|
2019-01-30 17:52:11 +00:00
|
|
|
|
|
|
|
(defvar org-enable-epub-support nil
|
|
|
|
"If non-nil org-epub is configured")
|
2018-10-16 12:30:48 +00:00
|
|
|
|
|
|
|
(defvar org-enable-jira-support nil
|
|
|
|
"If non-nil, Jira (https://www.atlassian.com/software/jira) related packages
|
|
|
|
are configured.")
|
2020-03-22 22:10:31 +00:00
|
|
|
|
|
|
|
(defvar org-enable-verb-support nil
|
|
|
|
"If non-nil, Verb (https://github.com/federicotdn/verb) is configured.")
|
2020-10-06 11:08:23 +00:00
|
|
|
|
|
|
|
(defvar org-enable-roam-support nil
|
|
|
|
"If non-nil, org-roam (https://www.orgroam.com/) is configured")
|
2021-01-05 22:30:08 +00:00
|
|
|
|
|
|
|
(defvar org-persp-startup-org-file nil
|
|
|
|
"If non-nil, opens the specified file instead of the first in org-agenda-files")
|
|
|
|
|
|
|
|
(defvar org-persp-startup-with-agenda nil
|
|
|
|
"If non-nil, opens the specified agenda custom view")
|
2021-01-12 12:04:58 +00:00
|
|
|
|
|
|
|
(defvar org-enable-valign nil
|
|
|
|
"If non-nil, enable valign-mode in org-mode buffers.
|
|
|
|
ATTENTION: `valign-mode' will be laggy working with tables contain more than 100 lines.")
|