28 lines
547 B
EmacsLisp
28 lines
547 B
EmacsLisp
|
;;; packages.el --- kivy layer packages file for Spacemacs.
|
||
|
;;
|
||
|
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
|
||
|
;;
|
||
|
;; Author: Ryota Kayanuma <picosushi12@gmail.com>
|
||
|
;; URL: https://github.com/syl20bnr/spacemacs
|
||
|
;;
|
||
|
;; This file is not part of GNU Emacs.
|
||
|
;;
|
||
|
;;; License: GPLv3
|
||
|
|
||
|
|
||
|
(defconst kivy-packages
|
||
|
'(
|
||
|
kivy-mode
|
||
|
)
|
||
|
"The list of Lisp packages required by the kivy layer.")
|
||
|
|
||
|
(defun kivy/init-kivy-mode ()
|
||
|
(use-package kivy-mode
|
||
|
:defer t
|
||
|
:init
|
||
|
(progn
|
||
|
;; config goes here.
|
||
|
)))
|
||
|
|
||
|
;;; packages.el ends here
|