summary refs log tree commit diff
path: root/emacs.d/custom
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2020-05-08 11:07:33 -0700
committerFranck Cuny <franck.cuny@gmail.com>2020-05-08 11:07:33 -0700
commit73e8629dca8bd82e09c9bc91cd908742b8268680 (patch)
tree60342c2f1c7c59d92cbd4b7afe7155e5cec8b495 /emacs.d/custom
parentemacs/ui: use the default theme (diff)
downloademacs.d-73e8629dca8bd82e09c9bc91cd908742b8268680.tar.gz
[emacs] treat PROJECT files as YAML
These files are used at Twitter to define how to manage a project (for
code reviews, etc). They are regular YAML file.
Diffstat (limited to 'emacs.d/custom')
-rw-r--r--emacs.d/custom/fcuny-conf.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs.d/custom/fcuny-conf.el b/emacs.d/custom/fcuny-conf.el
index e97d055..e605dd0 100644
--- a/emacs.d/custom/fcuny-conf.el
+++ b/emacs.d/custom/fcuny-conf.el
@@ -3,6 +3,9 @@
   :mode "Dockerfile[a-zA-Z.-]*\\'")
 
 (use-package yaml-mode
+  ;; At Twitter, we use PROJECT files to define a project and the
+  ;; format is YAML
+  :mode (("PROJECT" . yaml-mode))
   :ensure t)
 
 (use-package js-mode