Skip to content
This repository has been archived by the owner on Dec 21, 2020. It is now read-only.

Latest commit

 

History

History
66 lines (56 loc) · 1.45 KB

org.org

File metadata and controls

66 lines (56 loc) · 1.45 KB

Org mode configurations

About

My org related configurations sit here

(use-package restclient
:defer t
:load-path "~/.emacs.d/vendor/restclient/"
)

(use-package ob-restclient
:defer t
:load-path "~/.emacs.d/vendor/ob-restclient/"
)

(org-babel-do-load-languages
 'org-babel-load-languages (quote ((emacs-lisp . t)
                                    (sqlite . t)
				    (sql .t)
                                    (R . t)
				    (org .t)
				    (restclient . t)
                                    (ruby . t)
                                    (python . t))))

(use-package olivetti
:defer t
  :ensure t)

(use-package typo
:defer t
  :ensure t)

(use-package org-bullets
:defer t
  :ensure t
  :config
  (add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
)

;;(use-package poet-theme
;;  :ensure t
;;  :hook org-mode
;;  :config
;;   (olivetti-mode 1)        ;; Centers text in the buffer
;;   (flyspell-mode 1)        ;; Catch Spelling mistakes
;;   (blink-cursor-mode 0)    ;; Reduce visual noise
;;   (linum-mode 0)           ;; No line numbers for prose
;;   (setq org-bullets-bullet-list
;;        '("◉" "○"))
;;   (org-bullets-mode 1)
;;   (add-hook 'text-mode-hook
;;               (lambda ()
;;                (variable-pitch-mode 1)))

;;)

(use-package org-download
:defer t
:ensure t 
:config
(add-hook 'dired-mode-hook 'org-download-enable)
)