11 lines
275 B
EmacsLisp
11 lines
275 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/swift/packages.el
|
|
|
|
(package! swift-mode)
|
|
|
|
(if (featurep! +lsp)
|
|
(package! lsp-sourcekit)
|
|
(when (featurep! :completion company)
|
|
(package! company-sourcekit))
|
|
(when (featurep! :checkers syntax)
|
|
(package! flycheck-swift)))
|