a38a6bd4d2
Resolves https://github.com/syl20bnr/spacemacs/issues/9663 Tested to work on a created-from-scratch spacemacs-base config created with Emacs-style, ivy preferences. I just added below to dotspacemacs-configuration-layers (org :variables org-enable-hugo-support t) After this PR, C-c C-e in an Org file shows the Hugo export options.
36 lines
1.1 KiB
EmacsLisp
36 lines
1.1 KiB
EmacsLisp
;;; config.el --- Org configuration File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
;; Variables
|
|
|
|
(defvar org-want-todo-bindings nil
|
|
"If non-nil, evil-org's todo bindings are activated.")
|
|
|
|
(defvar org-enable-bootstrap-support nil
|
|
"If non-nil Twitter Bootstrap related packages are configured.")
|
|
|
|
(defvar org-enable-github-support nil
|
|
"If non-nil Github related packages are configured.")
|
|
|
|
(defvar org-enable-reveal-js-support nil
|
|
"If non-nil, enable export to reveal.js.")
|
|
|
|
(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.")
|
|
|
|
(defvar org-enable-org-journal-support nil
|
|
"If non-nil org-journal is configured.")
|
|
|
|
(defvar org-enable-hugo-support nil
|
|
"If non-nil, Hugo (https://gohugo.io) related packages are configured.")
|