Spelling, completion, nginx-mode.

Commit
2411e6465cc90c28ba96814adb69396abc3701c5
Author
Marius Peter <marius.peter@tutanota.com>
Author date
Committer
Marius Peter <marius.peter@tutanota.com>
Committer date
smart-documents.org
index 8fa4cb2d..624db322 100644..100644
@@ -745,12 +745,12 @@
745 745 #+NAME: flyspell
746 746 #+BEGIN_SRC emacs-lisp :tangle yes
747 747 (use-package flyspell)
748 Removed: ;; (add-hook 'text-mode-hook 'flyspell-mode)
748 Added: (add-hook 'text-mode-hook 'flyspell-mode)
749 749 #+END_SRC
750 750
751 751 *** Completion
752 752
753 Removed: #+BEGIN_SRC emacs-lisp :tangle no
753 Added: #+BEGIN_SRC emacs-lisp :tangle yes
754 754 (use-package company)
755 755 (add-hook 'after-init-hook 'global-company-mode)
756 756 #+END_SRC
@@ -1019,6 +1019,7 @@
1019 1019
1020 1020 #+BEGIN_SRC emacs-lisp :tangle yes
1021 1021 (use-package web-mode)
1022 Added: (use-package nginx-mode)
1022 1023 #+END_SRC
1023 1024
1024 1025 ** File formats
@@ -1202,10 +1203,7 @@
1202 1203 (setq org-hide-emphasis-markers nil
1203 1204 org-startup-indented t
1204 1205 org-src-preserve-indentation nil
1205 Removed: org-edit-src-content-indentation 2
1206 Removed: org-ellipsis (propertize " ▷ " ; folding symbol
1207 Removed: 'mouse-face 'highlight
1208 Removed: 'help-echo "Unfold section."))
1206 Added: org-edit-src-content-indentation 2)
1209 1207 #+END_SRC
1210 1208
1211 1209 *** Pretty LaTeX symbols
@@ -1228,7 +1226,9 @@
1228 1226
1229 1227 #+BEGIN_SRC emacs-lisp :tangle yes
1230 1228 (add-hook 'org-mode-hook 'org-num-mode)
1231 Removed: (setq org-num-face 'org-special-keyword)
1229 Added: (setq org-num-face 'org-special-keyword
1230 Added: org-num-skip-commented t
1231 Added: org-num-skip-unnumbered t)
1232 1232 #+END_SRC
1233 1233
1234 1234 By default, we hide Org document properties such as =#+TITLE=,
@@ -2031,8 +2031,12 @@
2031 2031 (load-theme 'sd-compagnon-dark)
2032 2032 #+END_SRC
2033 2033
2034 Removed: #+BEGIN_SRC emacs-lisp :tangle yes
2034 Added: #+BEGIN_SRC emacs-lisp :tangle no
2035 2035 (load-theme 'molokai)
2036 Added: #+END_SRC
2037 Added:
2038 Added: #+BEGIN_SRC emacs-lisp :tangle yes
2039 Added: (load-theme 'wombat)
2036 2040 #+END_SRC
2037 2041
2038 2042 #+BEGIN_SRC emacs-lisp :tangle no