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

(use-package dockerfile-mode
  :bind (:map dockerfile-mode-map
              ("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)