-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
evil-goggles; richer elisp highlight
- Loading branch information
JJPandari
committed
Aug 23, 2019
1 parent
862aa97
commit cdb2416
Showing
31 changed files
with
423 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,6 @@ | |
[submodule "targets"] | ||
path = extensions/targets | ||
url = [email protected]:noctuid/targets.el.git | ||
[submodule "elispfl"] | ||
path = extensions/elispfl | ||
url = [email protected]:cireu/elispfl.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,27 @@ | ||
(when (maybe-require-package 'docker) | ||
(use-package docker | ||
:init | ||
(jester/with-leader "d d" 'docker) | ||
:commands docker | ||
:config | ||
(fullframe docker-images tablist-quit) | ||
(fullframe docker-machines tablist-quit) | ||
(fullframe docker-volumes tablist-quit) | ||
(fullframe docker-networks tablist-quit) | ||
(fullframe docker-containers tablist-quit)) | ||
(maybe-require-package 'dockerfile-mode) | ||
(maybe-require-package 'docker-compose-mode) | ||
(fullframe docker-containers tablist-quit) | ||
;; TODO copy emacs state binding to motion state | ||
(evil-set-initial-state 'docker-image-mode 'emacs) | ||
(evil-set-initial-state 'docker-machine-mode 'emacs) | ||
(evil-set-initial-state 'docker-volume-mode 'emacs) | ||
(evil-set-initial-state 'docker-network-mode 'emacs) | ||
(evil-set-initial-state 'docker-container-mode 'emacs)) | ||
|
||
(use-package dockerfile-mode | ||
;; TODO auto upper-case first word on line? | ||
:init | ||
(add-hook! 'dockerfile-mode-hook (setq tab-width 0)) | ||
:mode "\\Dockerfile\\'") | ||
|
||
(use-package docker-compose-mode) | ||
|
||
|
||
(provide 'init-docker) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.