Miscellaneous.

Commit
74dcee46e1c59efa5216f13dd6c9bf4374054350
Author
Marius Peter <marius.peter@tutanota.com>
Author date
Committer
Marius Peter <marius.peter@tutanota.com>
Committer date
smart-documents.org
index f9dabfea..f5b49dde 100644..100644
@@ -861,6 +861,8 @@
861 861
862 862 ** File formats
863 863
864 Added: These aren't tied to a particular language per se.
865 Added:
864 866 *** =csv= and Excel
865 867
866 868 #+BEGIN_SRC emacs-lisp :tangle yes
@@ -1228,8 +1230,10 @@
1228 1230 ("pdflatex" "lualatex"))))
1229 1231 #+END_SRC
1230 1232
1231 Removed: *** Colored source blocks in PDF export
1233 Added: *** COMMENT Colored source blocks in PDF export
1232 1234
1235 Added: # Too distracting. Focus on fonts.
1236 Added:
1233 1237 Little bonus for GNU/Linux users: syntax highlighting for source code
1234 1238 blocks in LaTeX exports.
1235 1239
@@ -1727,15 +1731,15 @@
1727 1731 (setq custom-theme-directory (concat user-emacs-directory "themes/"))
1728 1732 #+END_SRC
1729 1733
1730 Removed: #+BEGIN_SRC emacs-lisp :tangle yes
1731 Removed: (load-theme 'sd-compagnon)
1734 Added: #+BEGIN_SRC emacs-lisp :tangle no
1735 Added: (load-theme 'sd-compagnon-dark)
1732 1736 #+END_SRC
1733 1737
1734 1738 #+BEGIN_SRC emacs-lisp :tangle no
1735 1739 (load-theme 'molokai)
1736 1740 #+END_SRC
1737 1741
1738 Removed: #+BEGIN_SRC emacs-lisp :tangle no
1742 Added: #+BEGIN_SRC emacs-lisp :tangle yes
1739 1743 (load-theme 'sd-light)
1740 1744 #+END_SRC
1741 1745
@@ -1800,8 +1804,8 @@
1800 1804 In files containing a mix of ~variable-pitch~ and ~fixed-pitch~ fonts,
1801 1805 the cursor is a more MS Word-like bar.
1802 1806
1803 Removed: #+BEGIN_SRC emacs-lisp :tangle yes
1804 Removed: (setq-default cursor-type 'bar)
1807 Added: #+BEGIN_SRC emacs-lisp :tangle no
1808 Added: (setq-default cursor-type 'box)
1805 1809 #+END_SRC
1806 1810
1807 1811 *** TODO Fonts
@@ -1855,7 +1859,7 @@
1855 1859
1856 1860 We use ~variable-pitch-mode~ for appropriate modes.
1857 1861
1858 Removed: #+BEGIN_SRC emacs-lisp :tangle no
1862 Added: #+BEGIN_SRC emacs-lisp :tangle yes
1859 1863 (add-hook 'org-mode-hook 'variable-pitch-mode)
1860 1864 (add-hook 'info-mode-hook 'variable-pitch-mode)
1861 1865 #+END_SRC