diff options
| author | Franck Cuny <franck.cuny@gmail.com> | 2020-05-08 11:07:33 -0700 |
|---|---|---|
| committer | Franck Cuny <franck.cuny@gmail.com> | 2020-05-08 11:07:33 -0700 |
| commit | 73e8629dca8bd82e09c9bc91cd908742b8268680 (patch) | |
| tree | 60342c2f1c7c59d92cbd4b7afe7155e5cec8b495 | |
| parent | emacs/ui: use the default theme (diff) | |
| download | emacs.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.
| -rw-r--r-- | emacs.d/custom/fcuny-conf.el | 3 |
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 |
