X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=emacs_el%2Fconfiguration%2Fdon-configuration.org;h=d58fc9f76e977f8c58090e573d2f795fe2c55356;hb=42a6eb3e198d2e451e9fae51fb016da9652a8157;hp=552feec13be98698f00de4050fd82de658c5623b;hpb=40db3d2a1fe38634b23135f4a9c1a4fa9cebf626;p=lib.git diff --git a/emacs_el/configuration/don-configuration.org b/emacs_el/configuration/don-configuration.org index 552feec..d58fc9f 100644 --- a/emacs_el/configuration/don-configuration.org +++ b/emacs_el/configuration/don-configuration.org @@ -280,7 +280,7 @@ value, scrolling continues until there is no more output. ** Magit #+BEGIN_SRC emacs-lisp :tangle don-configuration.el (use-package magit - :ensure f + :ensure t :config ;; don't verify where we are pushing (setq magit-push-always-verify nil) @@ -292,8 +292,7 @@ value, scrolling continues until there is no more output. load-path)) ) (use-package magit-annex - :ensure f - :config (require 'magit-annex) + :ensure t ) #+END_SRC @@ -465,6 +464,17 @@ value, scrolling continues until there is no more output. :config (require 'ess_configuration)) #+END_SRC +** Rainbowmode +From http://julien.danjou.info/projects/emacs-packages#rainbow-mode, this colorizes color strings + +#+BEGIN_SRC emacs-lisp + (use-package rainbow-mode + :ensure f + ;; add ess to the x major mode + :init (add-to-list 'rainbow-x-colors-major-mode-list 'ESS[S]) + (add-to-list 'rainbow-x-colors-major-mode-list 'ESS[R]) + ) +#+END_SRC ** Polymode #+BEGIN_SRC emacs-lisp @@ -581,14 +591,7 @@ value, scrolling continues until there is no more output. ; (require 'google-weather) ; (require 'org-google-weather) ; (setq-default org-google-weather-format "%i %c, [%l,%h] %s %C") - - ; http://julien.danjou.info/projects/emacs-packages#rainbow-mode - ; this colorizes color strings - (require 'rainbow-mode) - ; add ess to the x major mode - (add-to-list 'rainbow-x-colors-major-mode-list 'ESS[S]) - (add-to-list 'rainbow-x-colors-major-mode-list 'ESS[R]) - + (global-set-key "\C-xp" 'server-edit) (setq-default auto-mode-alist (cons '("\.wml$" . @@ -764,7 +767,7 @@ value, scrolling continues until there is no more output. (put 'downcase-region 'disabled nil) (put 'narrow-to-region 'disabled nil) - + (setq ispell-program-name "ispell") (autoload 'flyspell-mode "flyspell" "On-the-fly spelling checker." t) (add-hook 'message-mode-hook 'turn-on-flyspell) (add-hook 'text-mode-hook 'turn-on-flyspell)