Disable org-bullets on Windows
This commit is contained in:
parent
87146c73ce
commit
6521d4ac9e
1 changed files with 4 additions and 2 deletions
|
@ -25,7 +25,6 @@
|
|||
;;; Code:
|
||||
|
||||
(require 'org)
|
||||
(require 'org-bullets)
|
||||
(require 'org-capture)
|
||||
(require 'org-habit)
|
||||
|
||||
|
@ -122,8 +121,11 @@ ones that have a predecessor."
|
|||
(add-to-list 'org-modules 'org-habit)
|
||||
|
||||
(add-hook 'org-mode-hook 'auto-fill-mode)
|
||||
(add-hook 'org-mode-hook 'org-bullets-mode)
|
||||
(add-hook 'org-mode-hook #'oni-org-init-setup-prettify-symbols-mode)
|
||||
|
||||
(unless (eq system-type 'windows-nt)
|
||||
(require 'org-bullets)
|
||||
(add-hook 'org-mode-hook 'org-bullets-mode))
|
||||
|
||||
(provide 'oni-org-init)
|
||||
;;; oni-org-init.el ends here
|
||||
|
|
Loading…
Reference in a new issue