diff options
| author | benj <benj@rse8.com> | 2016-11-13 13:28:38 -0800 |
|---|---|---|
| committer | benj <benj@rse8.com> | 2016-11-13 13:28:38 -0800 |
| commit | f6c366f20c756c6f069e5c60bc9003189d31edbe (patch) | |
| tree | 9105cb2d32340a499dbb721e545cf8a74fd9c0ba /settings | |
| parent | f6ba59fca119f4decbb28818906fd063b3621413 (diff) | |
| download | emacs-f6c366f20c756c6f069e5c60bc9003189d31edbe.tar emacs-f6c366f20c756c6f069e5c60bc9003189d31edbe.tar.gz emacs-f6c366f20c756c6f069e5c60bc9003189d31edbe.tar.bz2 emacs-f6c366f20c756c6f069e5c60bc9003189d31edbe.tar.lz emacs-f6c366f20c756c6f069e5c60bc9003189d31edbe.tar.xz emacs-f6c366f20c756c6f069e5c60bc9003189d31edbe.tar.zst emacs-f6c366f20c756c6f069e5c60bc9003189d31edbe.zip | |
custom org mode and some ido clean up
Diffstat (limited to 'settings')
| -rw-r--r-- | settings/setup-ido.el | 1 | ||||
| -rw-r--r-- | settings/setup-org-mode.el | 16 |
2 files changed, 16 insertions, 1 deletions
diff --git a/settings/setup-ido.el b/settings/setup-ido.el index 6805260..f10e9fc 100644 --- a/settings/setup-ido.el +++ b/settings/setup-ido.el @@ -20,7 +20,6 @@ (defun my/ido-go-straight-home () (interactive) (cond - ((looking-back "~/") (insert "projects/")) ((looking-back "/") (insert "~/")) (:else (call-interactively 'self-insert-command)))) diff --git a/settings/setup-org-mode.el b/settings/setup-org-mode.el new file mode 100644 index 0000000..fe6f944 --- /dev/null +++ b/settings/setup-org-mode.el @@ -0,0 +1,16 @@ +;; Pretty bullets +(add-hook 'org-mode-hook (lambda() (org-bullets-mode 1))) + +(setq org-ellipsis "⤳") +(setq org-log-done 'time) +(setq org-src-fontify-natively t) +(setq org-src-tab-acts-natively t) + +(global-set-key (kbd "C-c a") 'org-agenda) + +(org-babel-do-load-languages + 'org-babel-load-languages + '((emacs-lisp . t) + (python . t))) + +(provide 'setup-org-mode) |
