summaryrefslogtreecommitdiffstats
path: root/shell/_emacs/org-fragments.el
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2015-09-14 20:19:14 +0200
committerTharre <tharre3@gmail.com>2016-10-07 20:13:36 +0000
commit98ba0e744bdf99ce0a894451700f11c39dc2579b (patch)
tree0586076ab8c7f3acde1bfef4375e6d4bdcd76003 /shell/_emacs/org-fragments.el
parent71a55046a49ea4f340638fc989fbad1a6b001ca7 (diff)
downloaddotfiles-98ba0e744bdf99ce0a894451700f11c39dc2579b.tar.gz
dotfiles-98ba0e744bdf99ce0a894451700f11c39dc2579b.tar.xz
dotfiles-98ba0e744bdf99ce0a894451700f11c39dc2579b.zip
emacs: actually install .emacs.d
Diffstat (limited to 'shell/_emacs/org-fragments.el')
-rw-r--r--shell/_emacs/org-fragments.el60
1 files changed, 0 insertions, 60 deletions
diff --git a/shell/_emacs/org-fragments.el b/shell/_emacs/org-fragments.el
deleted file mode 100644
index 0e145ad..0000000
--- a/shell/_emacs/org-fragments.el
+++ /dev/null
@@ -1,60 +0,0 @@
-
-** org-mode settings
-
-*** Increase front size of latex previews
-
-#+BEGIN_SRC emacs-lisp
-(setq org-format-latex-options (plist-put 'org-format-latex-options :scale 2.0))
-#+END_SRC
-
-*** Other customizations
-TODO: create subgroups
-
-#+BEGIN_SRC emacs-lisp
-;; org-mode
-;; active Babel languages
-;; TODO: load on demand
- (org-babel-do-load-languages
- 'org-babel-load-languages
- '((R . t)
- (python . t)
- ))
-
-(add-hook 'org-babel-after-execute-hook 'org-display-inline-images)
-(add-hook 'org-mode-hook 'org-display-inline-images)
-(setq org-confirm-babel-evaluate nil)
-(setq org-export-html-validation-link nil)
-(setq org-export-allow-BIND t)
-(setq org-support-shift-select t)
-(setq org-src-fontify-natively t)
-
-
-;; iimage (show images inline)
-;; (when window-system
-;; (defun iimage-fix-underlining ()
-;; ;; (set-face-underline-p 'org-link nil) ;; deactivate underlining
-;; ) ;; TODO: needing something better aka unclickable links
-
-;; (defun iimage-refresh-iimages ()
-;; "Hacked refresh"
-;; (clear-image-cache nil)
-;; (iimage-mode nil)
-;; (iimage-mode t))
-
-;; (add-hook 'org-mode-hook 'iimage-mode)
-;; (add-hook 'after-save-hook 'iimage-refresh-iimages)
-;; (add-hook 'iimage-mode-hook 'iimage-fix-underlining)
-;; (iimage-mode nil)
-;; (add-to-list 'iimage-mode-image-regex-alist
-;; (cons (concat "\\[\\[file:\\(~?" iimage-mode-image-filename-regex
-;; "\\)\\]") 1))
-;; )
-#+END_SRC
-
-** increase memory for tables
-
-#+BEGIN_SRC emacs-lisp
-;; Increase memory for tables
-(setq max-lisp-eval-depth '40000)
-(setq max-specpdl-size '100000)
-#+END_SRC