aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-02-28 22:02:50 -0500
committerJesús <heckyel@hyperbola.info>2021-02-28 22:02:50 -0500
commit91d8471e423fb2b2f61cf5fc770df31edb5abaf3 (patch)
tree0768e73931e88a589c027a49234ea53238255828
parent8ce00c8a0d9347877f00bb6ab90116e93a3119b3 (diff)
downloademacs-personal-91d8471e423fb2b2f61cf5fc770df31edb5abaf3.tar.lz
emacs-personal-91d8471e423fb2b2f61cf5fc770df31edb5abaf3.tar.xz
emacs-personal-91d8471e423fb2b2f61cf5fc770df31edb5abaf3.zip
Add dockerfile-mode
-rw-r--r--custom.el2
-rw-r--r--init.el1
-rw-r--r--modules/init-dockerfile.el11
3 files changed, 13 insertions, 1 deletions
diff --git a/custom.el b/custom.el
index 9434fd6..61117e2 100644
--- a/custom.el
+++ b/custom.el
@@ -9,7 +9,7 @@
'(anzu-replace-to-string-separator " => ")
'(anzu-search-threshold 1000)
'(package-selected-packages
- '(git-gutter-fringe yaml-mode whitespace-cleanup-mode which-key web-mode vue-mode use-package undo-tree smartparens sass-mode rjsx-mode rainbow-mode py-autopep8 projectile pkgbuild-mode pip-requirements php-refactor-mode nginx-mode neotree markdown-mode log4j-mode json-mode js2-refactor ivy-rich ivy-hydra highlight-indent-guides go-mode gitignore-mode gitconfig-mode gitattributes-mode git-timemachine flycheck eslintd-fix emmet-mode elpy dotenv-mode doom-themes doom-modeline dokuwiki-mode diminish crystal-mode counsel company-quickhelp company-php apache-mode anzu)))
+ '(git-gutter-fringe yaml-mode whitespace-cleanup-mode which-key web-mode vue-mode use-package undo-tree smartparens sass-mode rjsx-mode rainbow-mode py-autopep8 projectile pkgbuild-mode pip-requirements php-refactor-mode nginx-mode neotree markdown-mode log4j-mode json-mode js2-refactor ivy-rich ivy-hydra highlight-indent-guides go-mode gitignore-mode gitconfig-mode gitattributes-mode git-timemachine flycheck eslintd-fix emmet-mode elpy dotenv-mode doom-themes doom-modeline dokuwiki-mode diminish crystal-mode counsel company-quickhelp company-php apache-mode anzu dockerfile-mode)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
diff --git a/init.el b/init.el
index 0c52ac1..66dcf0d 100644
--- a/init.el
+++ b/init.el
@@ -113,6 +113,7 @@
(require 'init-rainbow)
(require 'init-web-mode)
(require 'init-dotenv)
+ (require 'init-dockerfile)
(require 'init-dokuwiki))
;;; Custom variables
diff --git a/modules/init-dockerfile.el b/modules/init-dockerfile.el
new file mode 100644
index 0000000..aa5b58a
--- /dev/null
+++ b/modules/init-dockerfile.el
@@ -0,0 +1,11 @@
+;;; init-dockerfile.el --- .Emacs Configuration -*- lexical-binding: t -*-
+;;; Commentary:
+;;
+
+;;; Code:
+;; dockerfile-mode
+(use-package dockerfile-mode
+ :mode ("Dockerfile\\'" . dockerfile-mode))
+
+(provide 'init-dockerfile)
+;;; init-dockerfile.el ends here