diff options
Diffstat (limited to 'emacs')
| -rw-r--r-- | emacs/emacs.service | 11 | ||||
| -rw-r--r-- | emacs/init.el | 6 |
2 files changed, 6 insertions, 11 deletions
diff --git a/emacs/emacs.service b/emacs/emacs.service deleted file mode 100644 index d611118..0000000 --- a/emacs/emacs.service +++ /dev/null @@ -1,11 +0,0 @@ -[Unit] -Description=Emacs: the extensible, self-documenting text editor - -[Service] -Type=forking -ExecStart=/usr/bin/emacs --daemon -ExecStop=/usr/bin/emacsclient --eval "(kill-emacs)" -Restart=always - -[Install] -WantedBy=default.target diff --git a/emacs/init.el b/emacs/init.el index 7818185..9949e47 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -581,4 +581,10 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer." (add-hook 'cmake-mode-hook 'cmake-font-lock-activate) (add-hook 'yaml-mode-hook 'warnings-mode-hook))) +(use-package dockerfile-mode + :ensure t + :config + + (add-to-list 'auto-mode-alist '("Dockerfile\\'" . dockerfile-mode))) + ;;; init.el ends here |
