This repository has been archived on 2022-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
emacs/modules/org.el

65 lines
1.8 KiB
EmacsLisp
Raw Normal View History

2018-02-04 18:13:57 +01:00
;;; org.el --- Module file for org-mode configuration.
;;
;; Copyright (C) 2017 Wojciech Kozlowski
;;
2018-02-04 18:18:18 +01:00
;; Author: Wojciech Kozlowski <wk@wojciechkozlowski.eu>
2018-02-04 18:13:57 +01:00
;; Created: 4 Feb 2018
;;
;; This file is not part of GNU Emacs.
;;
;;; Commentary:
;;
;; This module sets up org-mode.
;;
;;; License: GPLv3
;;; Required packages:
(setq emodule/org-packages
'(org-bullets)
)
;; Configuration:
(defun emodule/org-init ()
2018-04-17 22:03:53 +02:00
(use-package org
:config
;; ------------------------------------------------------------------------
;; Hide special characters for itlaics/bold/underline.
;; ------------------------------------------------------------------------
2018-02-04 18:13:57 +01:00
2018-04-17 22:03:53 +02:00
(setq org-hide-emphasis-markers t)
2018-02-04 18:13:57 +01:00
2018-04-17 22:03:53 +02:00
;; ------------------------------------------------------------------------
;; Better bullet points.
;; ------------------------------------------------------------------------
2018-02-04 18:13:57 +01:00
2018-04-17 22:03:53 +02:00
(font-lock-add-keywords 'org-mode
'(("^ +\\(*\\) "
(0 (prog1 ()
(compose-region (match-beginning 1)
(match-end 1)
""))))))
2018-02-04 18:13:57 +01:00
2018-04-17 22:03:53 +02:00
;; ------------------------------------------------------------------------
;; Better header bullets
;; ------------------------------------------------------------------------
2018-02-04 18:13:57 +01:00
2018-04-17 22:03:53 +02:00
(use-package org-bullets
:defer t
:init
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))))
;; ------------------------------------------------------------------------
;; LaTeX font size.
;; ------------------------------------------------------------------------
(plist-put org-format-latex-options :scale 2.0)
)
2018-02-04 18:13:57 +01:00
)