ee811f7b13
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
29 lines
696 B
EmacsLisp
29 lines
696 B
EmacsLisp
;;; packages.el --- jsonnet layer packages file for Spacemacs.
|
|
;;
|
|
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Liz <liz@kazkaan>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
(setq jsonnet-packages
|
|
'(
|
|
jsonnet-mode
|
|
flycheck
|
|
))
|
|
|
|
(defun javascript/post-init-flycheck ()
|
|
(spacemacs/enable-flycheck 'jsonnet-mode))
|
|
|
|
(defun jsonnet/init-jsonnet-mode ()
|
|
(use-package jsonnet-mode
|
|
:defer t
|
|
:init
|
|
(progn
|
|
(spacemacs/set-leader-keys-for-major-mode 'jsonnet-mode
|
|
"=" 'jsonnet-reformat-buffer
|
|
"gg" 'jsonnet-jump
|
|
"eb" 'jsonnet-eval-buffer))))
|