wg: refactor session fns
This commit is contained in:
parent
58c02f255f
commit
c20b947f3c
2 changed files with 36 additions and 23 deletions
|
@ -2,16 +2,6 @@
|
|||
|
||||
(use-package applescript-mode :mode "\\.applescript$")
|
||||
|
||||
;; TODO Set up emacs task runners for fruitstrap
|
||||
(use-package swift-mode
|
||||
:mode "\\.swift$"
|
||||
:init (add-hook 'swift-mode-hook 'flycheck-mode)
|
||||
:config
|
||||
(after! flycheck (push 'swift flycheck-checkers))
|
||||
|
||||
(require 'company-sourcekit)
|
||||
(define-company-backend! swift-mode (sourcekit yasnippet)))
|
||||
|
||||
|
||||
;;
|
||||
;; LaunchBar: https://www.obdev.at/products/launchbar
|
||||
|
@ -30,5 +20,20 @@
|
|||
(let ((dir (f-traverse-upwards (lambda (f) (string-suffix-p ".lbaction" f)))))
|
||||
(shell-command (format "open '%s'" dir))))
|
||||
|
||||
|
||||
;;
|
||||
;; Swift
|
||||
;;
|
||||
|
||||
;; TODO Set up emacs task runners for fruitstrap
|
||||
(use-package swift-mode
|
||||
:mode "\\.swift$"
|
||||
:init (add-hook 'swift-mode-hook 'flycheck-mode)
|
||||
:config
|
||||
(after! flycheck (push 'swift flycheck-checkers))
|
||||
|
||||
(require 'company-sourcekit)
|
||||
(define-company-backend! swift-mode (sourcekit yasnippet)))
|
||||
|
||||
(provide 'module-apple)
|
||||
;;; module-apple.el ends here
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue