Commit c793ef108e40
Changed files (1)
.emacs.d
.emacs.d/emacs.org
@@ -1073,7 +1073,7 @@
#+BEGIN_QUOTE
Once you summon the Hydra through the prefixed binding (the body + any one head), all heads can be called in succession with only a short extension.
-
+
The Hydra is vanquished once Hercules, any binding that isn't the Hydra's head, arrives. Note that Hercules, besides vanquishing the Hydra, will still serve his original purpose, calling his proper command. This makes the Hydra very seamless, it's like a minor mode that disables itself auto-magically.
#+END_QUOTE
@@ -2497,6 +2497,28 @@
#+END_SRC
+** Editorconfig
+
+ #+BEGIN_QUOTE
+ EditorConfig helps developers define and maintain consistent coding
+ styles between different editors and IDEs. The EditorConfig project
+ consists of a file format for defining coding styles and a
+ collection of text editor plugins that enable editors to read the
+ file format and adhere to defined styles. EditorConfig files are
+ easily readable and they work nicely with version control systems.
+ #+END_QUOTE
+
+ [[http://editorconfig.org/][Editorconfig]] is support by a lot of IDEs and editors, and some
+ project I'm working on are using it so let's add support to it in
+ Emacs.
+
+
+ #+BEGIN_SRC emacs-lisp
+ (use-package editorconfig
+ :ensure t)
+ #+END_SRC
+
+
** Mails
Add mu4e to the load-path and load it.
@@ -2539,4 +2561,3 @@
(add-to-list 'mu4e-view-actions '("retag" . mu4e-action-retag-message))
(add-to-list 'mu4e-headers-actions '("retag" . mu4e-action-retag-message))
#+END_SRC
-