;; DO NOT EDIT THIS FILE DIRECTLY ;; This is a file generated from a literate programing source file: emacs-init.org ;; You should make any changes there and regenerate it from Emacs org-mode using C-c C-v t (package-initialize) (require 'package) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) (require 'org) (require 'ob) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-ca" 'org-agenda) (global-set-key "\C-cc" 'org-capture) (global-set-key "\C-cb" 'org-switchb) ; (global-set-key "\C-c \C-," 'org-insert-structure-template) ; (add-hook 'org-mode-hook 'auto-fill-mode) ; (setq org-agenda-include-diary t) (setq org-directory "~/orgfiles/") (setq org-agenda-files (directory-files-recursively "~/orgfiles/" "\\.org$")) (setq custom-file "~/.emacs.d/emacs-custom.el") (load custom-file)