spacemacs/layers/+lang/zig/packages.el

27 lines
523 B
EmacsLisp
Raw Normal View History

2019-08-09 21:30:32 +00:00
;;; packages.el --- zig layer packages file for Spacemacs.
;;
2020-09-16 21:34:40 +00:00
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
2019-08-09 21:30:32 +00:00
;;
;; Author: <mijoharas@archlinux>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defconst zig-packages
'(
zig-mode
)
"The list of Lisp packages required by the zig layer.")
(defun zig/init-zig-mode ()
(use-package zig-mode
:defer t
:init
(progn
;; config goes here.
)))
;;; packages.el ends here