[Emacs] Add Docker and YAML support
This commit is contained in:
parent
5144dcb279
commit
bc7787d0ef
@ -563,6 +563,19 @@ the user can match one and open it."
|
|||||||
:hook
|
:hook
|
||||||
(pdf-tools-enabled . pdf-view-midnight-minor-mode))
|
(pdf-tools-enabled . pdf-view-midnight-minor-mode))
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;; Docker
|
||||||
|
|
||||||
|
(use-package docker
|
||||||
|
:defer t
|
||||||
|
:straight (:build t))
|
||||||
|
|
||||||
|
(use-package dockerfile-mode
|
||||||
|
:defer t
|
||||||
|
:straight (:build t)
|
||||||
|
:init
|
||||||
|
(put 'docker-image-name 'safe-local-variable #'stringp)
|
||||||
|
:mode "Dockerfile\\'")
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;; Dashboard
|
;;;;;;;;;;;;;;;; Dashboard
|
||||||
|
|
||||||
(use-package dashboard
|
(use-package dashboard
|
||||||
@ -778,6 +791,12 @@ the user can match one and open it."
|
|||||||
:straight (:build t)
|
:straight (:build t)
|
||||||
:defer t)
|
:defer t)
|
||||||
|
|
||||||
|
(use-package yaml-mode
|
||||||
|
:defer t
|
||||||
|
:straight (:build t)
|
||||||
|
:mode "\\.yml\\'"
|
||||||
|
:mode "\\.yaml\\'")
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
; Keybindings ;
|
; Keybindings ;
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
@ -822,6 +841,7 @@ the user can match one and open it."
|
|||||||
"SPC" #'counsel-M-x
|
"SPC" #'counsel-M-x
|
||||||
|
|
||||||
"a" "apps"
|
"a" "apps"
|
||||||
|
"ad" #'docker
|
||||||
"as" "shells"
|
"as" "shells"
|
||||||
"ase" #'eshell-new
|
"ase" #'eshell-new
|
||||||
"asv" #'vterm
|
"asv" #'vterm
|
||||||
|
Loading…
Reference in New Issue
Block a user