; no startup message (setq inhibit-startup-message t) ;; I'm feeling religious about this: (setq-default indent-tabs-mode nil) ;; ask y or n instead of yes or no (fset 'yes-or-no-p 'y-or-n-p) ;; indent after enter; I want this most of the time. (global-set-key (kbd "RET") 'newline-and-indent) ;; use emacs with IME (avoid 'no dead-acute' error messages) (load-library "iso-transl") ;; change number of newlines for empasized blocks (setq org-emphasis-regexp-components '(" \t('\"{" "- \t.,:!?;'\")}\\" " \t\r\n,\"'" "." 10)) (setq org-export-with-tags nil) (setq load-path (cons "~/.emacs.d/org-mode/lisp" load-path)) (add-to-list 'load-path "~/.emacs.d") (add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . org-mode)) (require 'org-loaddefs) (setq org-export-with-tags nil)