diff --git a/emacs/.emacs.d/init/oni-org-init.el b/emacs/.emacs.d/init/oni-org-init.el index 7b94881..e586bdb 100644 --- a/emacs/.emacs.d/init/oni-org-init.el +++ b/emacs/.emacs.d/init/oni-org-init.el @@ -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