org: use org-hide-leading-stars instead of org-bullets

This commit is contained in:
Łukasz Pankowski 2019-12-30 10:51:42 +01:00
parent d3bb0fe381
commit 99f6eaa5ee

View File

@ -949,14 +949,11 @@ inserted between the braces between the braces."
;;; ### Org mode ### ;;; ### Org mode ###
(use-package org-bullets
:defer)
(use-package org (use-package org
:init :init
(setq org-default-notes-file "~/org/notes.org" (setq org-default-notes-file "~/org/notes.org"
org-highlight-latex-and-related '(latex) org-highlight-latex-and-related '(latex)
org-bullets-bullet-list '("" "" "" "") org-hide-leading-stars t
org-ellipsis "" org-ellipsis ""
org-catch-invisible-edits 'smart org-catch-invisible-edits 'smart
gnuplot-program "pyxplot") gnuplot-program "pyxplot")
@ -967,8 +964,7 @@ inserted between the braces between the braces."
("C-c B" . org-switchb) ("C-c B" . org-switchb)
("C-c c" . org-capture) ("C-c c" . org-capture)
("C-c l" . org-store-link)) ("C-c l" . org-store-link))
:hook ((org-timer-done . my-org-timer-done) :hook ((org-timer-done . my-org-timer-done))
(org-mode . org-bullets-mode))
:config :config
(require 'ox-beamer)) (require 'ox-beamer))