doomemacs/init-org.el

54 lines
1.9 KiB
EmacsLisp
Raw Normal View History

2015-12-23 03:51:26 -05:00
;;; init-org.el --- inits Emacs for Org-mode and writing
;;
;; This orgfile is sourced instead of init.el for instances of Emacs dedicated for
;; writing fiction, papers, or simply org-mode. I prefer to keep this functionality
;; separate from stock Emacs.
;;
;;;
(defconst EMACS-WRITE t)
2016-01-22 19:34:04 -05:00
(defconst narf-theme 'narf-light)
2015-12-23 03:51:26 -05:00
(defconst narf-default-font (font-spec :family "Hack" :size 14))
(defconst narf-writing-font (font-spec :family "Deja Sans" :size 14))
2016-01-27 20:42:11 -05:00
(defconst narf-packages
'(core ; core/core.el
core-popup ; taming stray windows
core-ui ; draw me like one of your French editors
core-evil ; come to the dark side, we have cookies
core-editor ; filling the editor-shaped hole in the emacs OS
core-company ; for the lazy typist
core-yasnippet ; for the lazier typist
core-auto-insert ; for the laziest typist
core-flycheck ; remember that semicolon you forgot?
core-project ; whose project am I in?
core-vcs ; version control is a programmer's best friend
core-helm ; a search engine for life and love
core-eval ; run code, run.
core-workgroups ; cure Emacs alzheimers
2015-12-23 03:51:26 -05:00
;;; Environments
2016-01-27 20:42:11 -05:00
module-markdown
module-org
module-plantuml
2015-12-23 03:51:26 -05:00
;;; Specific custom functionality
2016-01-27 20:42:11 -05:00
;; lib-plugin ; plugin dev for various programs
lib-tmux ; closing the rift between GUI & terminal
lib-demo ; let me demonstrate...
lib-writing ; yes, I write papers and fiction in emacs
;; lib-crm ; emacs and org-mode based CRM
2015-12-23 03:51:26 -05:00
;;; Key bindings & ex commands
2016-01-27 20:42:11 -05:00
my-bindings
my-commands
))
(load (concat user-emacs-directory "init-packages.el"))
2015-12-23 03:51:26 -05:00
(setq wg-session-file (expand-file-name "wg-org-default" narf-temp-dir))
2016-01-22 19:34:04 -05:00
(cd org-directory)
2015-12-23 03:51:26 -05:00