summary refs log tree commit diff
path: root/emacs.d/modules/module-docker.el
blob: 4583b0b3c18b1fb082d8ffd15c74871a120efed5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
(require 'config-package)

(use-package dockerfile-mode
  :bind ("C-z" . hybrdo-docker/body))

(defhydra hydra-docker (:hint nil :exit t)
"
^Command^
_b_: build"
  ("b" dockerfile-build-buffer)
  ("q" nil "quit" :color blue))

(provide 'module-docker)