spacemacs/layers/+lang/erlang/packages.el
duianto ee811f7b13 Unify packages list parentheses style
problem:
some layer packages lists have the open and closing parentheses on the same line
as the first and last listed package, but most seem to have them on a separate
lines.

solution:
put the open and close parentheses on separate lines, except for lists with only
a single package, they are written on the same line as the variable name and
parentheses.

fix the lists indentation
2018-11-21 21:35:38 +00:00

57 lines
1.7 KiB
EmacsLisp

;;; packages.el --- Erlang Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2018 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 erlang-packages
'(
company
erlang
ggtags
counsel-gtags
helm-gtags
flycheck
))
(defun erlang/post-init-company ()
(add-hook 'erlang-mode-hook 'company-mode))
(defun erlang/init-erlang ()
(use-package erlang
:defer t
:init
(progn
;; explicitly run prog-mode hooks since erlang mode does is not
;; derived from prog-mode major-mode
(add-hook 'erlang-mode-hook 'spacemacs/run-prog-mode-hooks)
;; (setq erlang-root-dir "/usr/lib/erlang/erts-5.10.3")
;; (add-to-list 'exec-path "/usr/lib/erlang/erts-5.10.3/bin")
;; (setq erlang-man-root-dir "/usr/lib/erlang/erts-5.10.3/man")
;; (add-hook 'erlang-mode-hook
;; (lambda ()
;; (setq mode-name "Erlang")
;; ;; when starting an Erlang shell in Emacs, with a custom node name
;; (setq inferior-erlang-machine-options '("-sname" "syl20bnr"))
;; ))
(setq erlang-compile-extra-opts '(debug_info)))
:config
(require 'erlang-start)))
(defun erlang/post-init-flycheck ()
(spacemacs/enable-flycheck 'erlang-mode))
(defun erlang/post-init-ggtags ()
(add-hook 'erlang-mode-local-vars-hook #'spacemacs/ggtags-mode-enable))
(defun erlang/post-init-counsel-gtags ()
(spacemacs/counsel-gtags-define-keys-for-mode 'erlang-mode))
(defun erlang/post-init-helm-gtags ()
(spacemacs/helm-gtags-define-keys-for-mode 'erlang-mode))