-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlw-plugins.asd
32 lines (28 loc) · 954 Bytes
/
lw-plugins.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
;; Copyright (c) 2024, April & May
;; SPDX-License-Identifier: 0BSD
(defsystem lw-plugins
:author "April & May"
:license "0BSD"
:components ((:file "align")
(:file "colourful")
(:file "directory")
(:file "docstring-folding")
(:file "editor-markdown")
(:file "expand-region")
(:file "flex-complete")
(:file "pair")
(:file "side-tree")))
(defsystem lw-plugins/nerd-icons
:author "April & May"
:license "0BSD"
:components ((:file "nerd-icons/nerd-icons")))
(defsystem lw-plugins/nerd-icons-directory
:author "April & May"
:license "0BSD"
:depends-on (lw-plugins/nerd-icons)
:components ((:file "nerd-icons/nerd-icons-directory")))
(defsystem lw-plugins/nerd-icons-side-tree
:author "April & May"
:license "0BSD"
:depends-on (lw-plugins/nerd-icons)
:components ((:file "nerd-icons/nerd-icons-side-tree")))