mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
rm module-apple, add module-{db,swift}, disable module-org, update init.el
This commit is contained in:
16
modules/module-swift.el
Normal file
16
modules/module-swift.el
Normal file
@ -0,0 +1,16 @@
|
||||
;;; module-swift.el
|
||||
|
||||
;; TODO Set up emacs task runners for fruitstrap
|
||||
(use-package swift-mode
|
||||
:mode "\\.swift$"
|
||||
:init (add-hook 'swift-mode-hook 'flycheck-mode)
|
||||
:config
|
||||
(def-company-backend! swift-mode (sourcekit yasnippet))
|
||||
(def-repl! swift-mode swift-mode-run-repl)
|
||||
(after! flycheck (push 'swift flycheck-checkers)))
|
||||
|
||||
(use-package company-sourcekit
|
||||
:after swift-mode)
|
||||
|
||||
(provide 'module-swift)
|
||||
;;; module-swift.el ends here
|
Reference in New Issue
Block a user