summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-conf.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/custom/fcuny-conf.el')
-rw-r--r--emacs.d/custom/fcuny-conf.el32
1 files changed, 0 insertions, 32 deletions
diff --git a/emacs.d/custom/fcuny-conf.el b/emacs.d/custom/fcuny-conf.el
deleted file mode 100644
index 97d1d1f..0000000
--- a/emacs.d/custom/fcuny-conf.el
+++ /dev/null
@@ -1,32 +0,0 @@
-(use-package dockerfile-mode
-  :ensure t
-  :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
-  :custom
-  (json-reformat:indent-width 2)
-  (js-indent-level 2)
-  :hook ((json-mode . flyspell-prog-mode)
-         (json-mode . flycheck-mode))
-  :init
-  (if (fcuny/check-work-machine-p)
-    (add-to-list 'auto-mode-alist '("\\.workflow$" . js-mode))))
-
-(use-package jq-format
-  :ensure t)
-
-(use-package protobuf-mode
-  :ensure t
-  :hook ((protobuf-mode . flyspell-prog-mode)
-         (protobuf-mode . flycheck-mode)))
-
-(use-package systemd
-  :ensure t)
-
-(provide 'fcuny-conf)