Use zle-minor-mode in sh-mode
After I wrote zle.el, it seems that I forgot about it. Attempting to revive it by using it during sh-mode.
This commit is contained in:
parent
7a2ca2b5c0
commit
3b9656ca4a
1 changed files with 12 additions and 1 deletions
|
@ -6,10 +6,21 @@
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;; Dependencies
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
(require 'zle)
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;; Code
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
(use-package flymake-shellcheck
|
(use-package flymake-shellcheck
|
||||||
:commands flymake-shellcheck-load
|
:commands flymake-shellcheck-load
|
||||||
:init
|
:init
|
||||||
(add-hook 'sh-mode-hook #'flymake-shellcheck-load))
|
(add-hook 'sh-mode-hook #'flymake-shellcheck-load)
|
||||||
|
(add-hook 'sh-mode-hook #'zle-minor-mode))
|
||||||
|
|
||||||
(use-package fish-mode)
|
(use-package fish-mode)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue