summary refs log tree commit diff
path: root/emacs/custom/my-conf.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-23 09:55:58 -0700
committerFranck Cuny <franck@fcuny.net>2022-03-23 09:55:58 -0700
commit1543ac66ba6f829082b745e6a11a9aeb9e8faec7 (patch)
treef06103de2e5d82426877595cd23d6201f2cdb000 /emacs/custom/my-conf.el
parentrename fcuny-org to my-org (diff)
downloademacs.d-1543ac66ba6f829082b745e6a11a9aeb9e8faec7.tar.gz
rename a few more libraries
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