X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=emacs_el%2Fconfiguration%2Fdon-configuration.org;h=922774c66d42cb426cecc08d91c44f13dc123adb;hb=2eafaccb15ffd538043c4ceae394c6680bb447a5;hp=ea66fdc23242cbc9f6ea641e93d5adbf4e100b0b;hpb=78a50c81dd9c15a350fe7e9c7816d6cf5a09063b;p=lib.git diff --git a/emacs_el/configuration/don-configuration.org b/emacs_el/configuration/don-configuration.org index ea66fdc..922774c 100644 --- a/emacs_el/configuration/don-configuration.org +++ b/emacs_el/configuration/don-configuration.org @@ -312,10 +312,17 @@ value, scrolling continues until there is no more output. (setq load-path (append '("~/lib/emacs_el/magit-annex") load-path)) + ;; load magit-vcsh + (setq load-path + (append '("~/lib/emacs_el/magit-vcsh") + load-path)) ) (use-package magit-annex :ensure t ) + (use-package magit-vcsh + :ensure f ; currently not in melpa, so don't try to install + ) #+END_SRC ** Perl @@ -390,9 +397,7 @@ value, scrolling continues until there is no more output. :defer t :ensure auctex :config - (add-to-list 'LaTeX-fill-excluded-macros - '("Sexpr")) - (add-to-list 'TeX-style-path '"/home/don/lib/emacs_el/auctex/style") + ; (add-to-list 'TeX-style-path '"/home/don/lib/emacs_el/auctex/style") ;; REFTEX (much enhanced management of cross-ref, labels, etc) ;; http://www.strw.leidenuniv.nl/~dominik/Tools/reftex/ ; (autoload 'reftex-mode "reftex" "RefTeX Minor Mode" t) @@ -458,6 +463,10 @@ value, scrolling continues until there is no more output. '("Cref" TeX-arg-ref) '("cpageref" TeX-arg-ref) '("Cpageref" TeX-arg-ref))))) + (eval-after-load + "latex" + '(add-to-list 'LaTeX-fill-excluded-macros + '("Sexpr"))) (use-package font-latex :config @@ -541,6 +550,18 @@ From http://julien.danjou.info/projects/emacs-packages#rainbow-mode, this colori #+BEGIN_SRC emacs-lisp (use-package outline-magic) #+END_SRC +** Writeroom Mode +#+BEGIN_SRC emacs-lisp + (use-package writeroom-mode + :config (add-hook 'writeroom-mode-hook 'auto-fill-mode) + ) +#+END_SRC +** GhostText/Atomic Chrome +#+BEGIN_SRC emacs-lisp + (use-package atomic-chrome + :config (atomic-chrome-start-server) + ) +#+END_SRC * Keybindings ** Override other things #+BEGIN_SRC emacs-lisp