aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjason2017-07-12 13:10:13 -0600
committerjason2017-07-12 13:10:13 -0600
commit6611db8bd017201c6509bd903940ecd87c32f84f (patch)
tree26e41aacc73895b7eec909acb1adff3874eed9f3
parentf8aeab1d3d047596b3cdba6bc9a8ac0edaa01ced (diff)
downloaddotemacs-6611db8bd017201c6509bd903940ecd87c32f84f.tar.gz
dotemacs-6611db8bd017201c6509bd903940ecd87c32f84f.zip
Add editorconfig
-rw-r--r--config.org10
1 files changed, 10 insertions, 0 deletions
diff --git a/config.org b/config.org
index b5159ac..6268896 100644
--- a/config.org
+++ b/config.org
@@ -418,6 +418,16 @@ fill column is.
418 :config 418 :config
419 (add-hook 'prog-mode-hook 'fci-mode)) 419 (add-hook 'prog-mode-hook 'fci-mode))
420#+END_SRC 420#+END_SRC
421** editorconfig
422Some of the project I work on use editorconfig to sync style guide
423configurations across everyone's editors
424
425#+BEGIN_SRC emacs-lisp
426(use-package editorconfig
427 :ensure t
428 :config
429 (editorconfig-mode 1))
430#+END_SRC
421* Languages 431* Languages
422** Python 432** Python
423Elpy does a great job of supporting Python so I just use that. 433Elpy does a great job of supporting Python so I just use that.