spacemacs/layers/+lang/shell-scripts/packages.el
Eivind Fonn 08561d8631 core: implement :depends for package declarations
This replaces the older pattern
:toggle (configuration-layer/package-usedp ..)

This implementation ensures that :disabled-for honors dependent packages, i.e.
if package a depends on package b, which is owned by layer c, and layer c is
disabled for layer d, then neither package a nor b will be configured for layer
d. Previously, this was only true for package a, but not b.

This commit also fixes:

- configuration-layer/describe-package now shows which post-init and pre-init
  functions are disabled, if any
- Does not recreate all layer objects unconditionally when calling
  configuration-layer/discover-layers. Previously, this led to all layers being
  recreated after e.g. `SPC h SPC`, without any of the dotfile information.
  Since this information is now necessary for
  configuration-layer/describe-package, it’s important that we don’t clear the
  indexed layers when invoking this function.
2017-06-22 11:53:05 +02:00

87 lines
2.5 KiB
EmacsLisp

;;; packages.el --- Shell Scripts Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq shell-scripts-packages
'(
(company-shell :depends company)
fish-mode
flycheck
flycheck-bashate
ggtags
helm-gtags
insert-shebang
(sh-script :location built-in)
))
(defun shell-scripts/init-company-shell ()
(use-package company-shell
:defer t
:init
(progn
(spacemacs|add-company-backends
:backends (company-shell company-shell-env)
:modes sh-mode)
(spacemacs|add-company-backends
:backends (company-shell company-shell-env company-fish-shell)
:modes fish-mode))))
(defun shell-scripts/post-init-flycheck ()
(spacemacs/enable-flycheck 'sh-mode))
(defun shell-scripts/init-flycheck-bashate ()
(use-package flycheck-bashate
:defer t
:init (add-hook 'sh-mode-hook 'flycheck-bashate-setup)))
(defun shell-scripts/init-fish-mode ()
(use-package fish-mode
:defer t))
(defun shell-scripts/init-sh-script ()
(use-package sh-script
:defer t
:init
(progn
(spacemacs/set-leader-keys-for-major-mode 'sh-mode
"\\" 'sh-backslash-region)
;; Use sh-mode when opening `.zsh' files, and when opening Prezto runcoms.
(dolist (pattern '("\\.zsh\\'"
"zlogin\\'"
"zlogout\\'"
"zpreztorc\\'"
"zprofile\\'"
"zshenv\\'"
"zshrc\\'"))
(add-to-list 'auto-mode-alist (cons pattern 'sh-mode)))
(defun spacemacs//setup-shell ()
(when (and buffer-file-name
(string-match-p "\\.zsh\\'" buffer-file-name))
(sh-set-shell "zsh")))
(add-hook 'sh-mode-hook 'spacemacs//setup-shell))))
(defun shell-scripts/post-init-ggtags ()
(add-hook 'sh-mode-local-vars-hook #'spacemacs/ggtags-mode-enable))
(defun shell-scripts/post-init-helm-gtags ()
(spacemacs/helm-gtags-define-keys-for-mode 'sh-mode))
(defun shell-scripts/init-insert-shebang ()
(use-package insert-shebang
:defer t
:init
(progn
(spacemacs/set-leader-keys "i!" 'spacemacs/insert-shebang)
;; we don't want to insert shebang lines automatically
(remove-hook 'find-file-hook 'insert-shebang))))