aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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.