rm module-apple, add module-{db,swift}, disable module-org, update init.el
This commit is contained in:
parent
8bdb4d71d6
commit
1db2ccf504
4 changed files with 72 additions and 43 deletions
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
|
Loading…
Add table
Add a link
Reference in a new issue