spacemacs/layers/+lang/shell-scripts/packages.el

114 lines
3.5 KiB
EmacsLisp
Raw Normal View History

;;; 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
'(
2017-07-03 07:52:54 +00:00
(company-shell :requires company)
fish-mode
flycheck
flycheck-bashate
ggtags
counsel-gtags
helm-gtags
2016-09-16 18:03:28 +00:00
insert-shebang
org
(sh-script :location built-in)
))
(defun shell-scripts/init-company-shell ()
(use-package company-shell
:defer t
:init
(progn
Refactor and simplify company backends declaration Enabling a company backend for a specific mode was a tedious tasks with code scattered at different locations, one for local variable definitions, one for company hook function definitions and another where the backends were pushed to the local variables (which was problematic, since we ended up pushing the same backends over and over again with `SPC f e R`, pushes have been replaced by add-to-list calls in the new macro). All these steps are now put together at one place with the new macro spacemacs|add-company-backends, check its docstring for more info on its arguments. This macro also allows to define arbitrary buffer local variables to tune company for specific modes (similar to layer variables via a keyword :variables) The code related to company backends management has been moved to the auto-completion layer in the funcs.el file. A nice side effect of this move is that it enforces correct encapsulation of company backends related code. We can now easily detect if there is some configuration leakage when the auto-completion layer is not used. But we loose macro expansion at file loading time (not sue it is a big concern though). The function spacemacs|enable-auto-complete was never used so it has been deleted which led to the deletion of the now empty file core-auto-completion.el. The example in LAYERS.org regarding auto-completion is now out of date and has been deleted. An example to setup auto-completion is provided in the README.org file of the auto-completion layer.
2017-01-02 05:39:04 +00:00
(spacemacs|add-company-backends
:backends (company-shell company-shell-env)
Refactor and simplify company backends declaration Enabling a company backend for a specific mode was a tedious tasks with code scattered at different locations, one for local variable definitions, one for company hook function definitions and another where the backends were pushed to the local variables (which was problematic, since we ended up pushing the same backends over and over again with `SPC f e R`, pushes have been replaced by add-to-list calls in the new macro). All these steps are now put together at one place with the new macro spacemacs|add-company-backends, check its docstring for more info on its arguments. This macro also allows to define arbitrary buffer local variables to tune company for specific modes (similar to layer variables via a keyword :variables) The code related to company backends management has been moved to the auto-completion layer in the funcs.el file. A nice side effect of this move is that it enforces correct encapsulation of company backends related code. We can now easily detect if there is some configuration leakage when the auto-completion layer is not used. But we loose macro expansion at file loading time (not sue it is a big concern though). The function spacemacs|enable-auto-complete was never used so it has been deleted which led to the deletion of the now empty file core-auto-completion.el. The example in LAYERS.org regarding auto-completion is now out of date and has been deleted. An example to setup auto-completion is provided in the README.org file of the auto-completion layer.
2017-01-02 05:39:04 +00:00
:modes sh-mode)
(spacemacs|add-company-backends
:backends (company-shell company-shell-env company-fish-shell)
Refactor and simplify company backends declaration Enabling a company backend for a specific mode was a tedious tasks with code scattered at different locations, one for local variable definitions, one for company hook function definitions and another where the backends were pushed to the local variables (which was problematic, since we ended up pushing the same backends over and over again with `SPC f e R`, pushes have been replaced by add-to-list calls in the new macro). All these steps are now put together at one place with the new macro spacemacs|add-company-backends, check its docstring for more info on its arguments. This macro also allows to define arbitrary buffer local variables to tune company for specific modes (similar to layer variables via a keyword :variables) The code related to company backends management has been moved to the auto-completion layer in the funcs.el file. A nice side effect of this move is that it enforces correct encapsulation of company backends related code. We can now easily detect if there is some configuration leakage when the auto-completion layer is not used. But we loose macro expansion at file loading time (not sue it is a big concern though). The function spacemacs|enable-auto-complete was never used so it has been deleted which led to the deletion of the now empty file core-auto-completion.el. The example in LAYERS.org regarding auto-completion is now out of date and has been deleted. An example to setup auto-completion is provided in the README.org file of the auto-completion layer.
2017-01-02 05:39:04 +00:00
: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
;; Add meaningful names for prefix categories
(spacemacs/declare-prefix-for-mode 'sh-mode "mi" "insert")
(spacemacs/declare-prefix-for-mode 'sh-mode "mg" "goto")
;; Add standard key bindings for insert commands
2016-01-08 14:37:39 +00:00
(spacemacs/set-leader-keys-for-major-mode 'sh-mode
"\\" 'sh-backslash-region
"ic" 'sh-case
"ii" 'sh-if
"if" 'sh-function
"io" 'sh-for
"ie" 'sh-indexed-loop
"iw" 'sh-while
"ir" 'sh-repeat
"is" 'sh-select
"iu" 'sh-until
"ig" 'sh-while-getopts)
2016-01-08 14:37:39 +00:00
;; 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
2015-11-16 10:07:10 +00:00
(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-counsel-gtags ()
(spacemacs/counsel-gtags-define-keys-for-mode 'sh-mode))
(defun shell-scripts/post-init-helm-gtags ()
(spacemacs/helm-gtags-define-keys-for-mode 'sh-mode))
2016-09-16 18:03:28 +00:00
(defun shell-scripts/pre-init-org ()
(spacemacs|use-package-add-hook org
:post-config (add-to-list 'org-babel-load-languages '(shell . t))))
2016-09-16 18:03:28 +00:00
(defun shell-scripts/init-insert-shebang ()
(use-package insert-shebang
:defer t
:init
(progn
;; Insert shebang must be available for non shell modes like python or
;; groovy but also in the major mode menu with shell specific inserts
(spacemacs/set-leader-keys-for-major-mode 'sh-mode
"i!" 'spacemacs/insert-shebang)
2016-09-16 18:03:28 +00:00
(spacemacs/set-leader-keys "i!" 'spacemacs/insert-shebang)
;; we don't want to insert shebang lines automatically
(remove-hook 'find-file-hook 'insert-shebang))))