diff options
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-conf.el (renamed from emacs/custom/fcuny-conf.el) | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/emacs/custom/fcuny-conf.el b/emacs/custom/my-conf.el index 7258d9f..3cb7234 100644 --- a/emacs/custom/fcuny-conf.el +++ b/emacs/custom/my-conf.el @@ -1,13 +1,18 @@ -;;; fcuny-conf.el -- setup configuration modes +;;; my-conf.el --- Configure modes related to configuration files -*- lexical-binding: t -*- + ;;; Commentary: +;; Provides configuration for modes that are related to configuration +;; files. + ;;; Code: -(require 'fcuny-defuns) +;; (require 'fcuny-defuns) (require 'use-package) (use-package dockerfile-mode :ensure t - :mode "Dockerfile[a-zA-Z.-]*\\'") + :custom + (dockerfile-use-sudo t)) (use-package yaml-mode :ensure t) @@ -44,5 +49,5 @@ (use-package chef-mode :ensure t) -(provide 'fcuny-conf) -;;; fcuny-conf.el ends here +(provide 'my-conf) +;;; my-conf.el ends here |