diff options
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-conf.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/emacs/custom/my-conf.el b/emacs/custom/my-conf.el index 115e158..7b1dd13 100644 --- a/emacs/custom/my-conf.el +++ b/emacs/custom/my-conf.el @@ -6,10 +6,11 @@ ;;; Code: -(add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)) -(add-to-list 'auto-mode-alist '("\\.yaml\\'" . yaml-mode)) -(add-to-list 'auto-mode-alist '("Dockerfile\\'" . dockerfile-mode)) -(add-to-list 'auto-mode-alist '("\\.tf\\'" . terraform-mode)) +(add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)) +(add-to-list 'auto-mode-alist '("_SWARP10_METADATA\\'" . yaml-mode)) ;; roblox related +(add-to-list 'auto-mode-alist '("\\.yaml\\'" . yaml-mode)) +(add-to-list 'auto-mode-alist '("Dockerfile\\'" . dockerfile-mode)) +(add-to-list 'auto-mode-alist '("\\.tf\\'" . terraform-mode)) (customize-set-variable 'dockerfile-use-sudo t) (customize-set-variable 'dockerfile-use-buildkit t) |