summary refs log tree commit diff
path: root/emacs.d/config/fcuny-serializers.el
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2018-08-05 18:30:45 -0700
committerFranck Cuny <franck.cuny@gmail.com>2018-08-05 18:30:45 -0700
commit5ddb72e86d9556e670a9350e9cc8d0d18ac213c8 (patch)
tree6b766356160b5f511da87f90fd3551009ab1da04 /emacs.d/config/fcuny-serializers.el
parent[emacs] set font size for osx (diff)
downloademacs.d-5ddb72e86d9556e670a9350e9cc8d0d18ac213c8.tar.gz
Shuffling things around in this repo
Diffstat (limited to 'emacs.d/config/fcuny-serializers.el')
-rw-r--r--emacs.d/config/fcuny-serializers.el38
1 files changed, 0 insertions, 38 deletions
diff --git a/emacs.d/config/fcuny-serializers.el b/emacs.d/config/fcuny-serializers.el
deleted file mode 100644
index 76fa6c2..0000000
--- a/emacs.d/config/fcuny-serializers.el
+++ /dev/null
@@ -1,38 +0,0 @@
-(eval-when-compile
-  (require 'use-package))
-
-(use-package yaml-mode
-  :ensure t
-  :after (flycheck flyspell)
-  :mode (("\\.yml?\\'" . yaml-mode)
-         ("\\.yaml?\\'" . yaml-mode))
-  :hook ((yaml-mode . flycheck-mode)
-         (yaml-mode . flyspell-prog-mode)))
-
-(use-package json-mode
-  :ensure t
-  :after (flycheck flyspell)
-  :custom
-  (json-reformat:indent-width 2)
-  (js-indent-level 2)
-  :hook ((json-mode . flyspell-prog-mode)
-         (json-mode . flycheck-mode))
-  :init
-  (if (fc/check-work-machine-p)
-    (add-to-list 'auto-mode-alist '("\\.workflow$" . json-mode))))
-
-(use-package thrift
-  :ensure t
-  :after (flycheck flyspell)
-  :custom
-  (thrift-indent-level 2)
-  :hook ((thrift . flyspell-prog-mode)
-         (thrift . flycheck-mode)))
-
-(use-package protobuf-mode
-  :ensure t
-  :after (flycheck flyspell)
-  :hook ((protobuf-mode . flyspell-prog-mode)
-         (protobuf-mode . flycheck-mode)))
-
-(provide 'fcuny-serializers)