Created
November 22, 2016 16:31
-
-
Save WenxiJin/c42fd10e32c8912db5ca845cc54eb3b2 to your computer and use it in GitHub Desktop.
Apple swift .dir-locals.el
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; Directory Local Variables | |
;;; For more information see (info "(emacs) Directory Variables") | |
((nil | |
(eval let* | |
((x (dir-locals-find-file default-directory)) | |
(this-directory (if (listp x) (car x) (file-name-directory x)))) | |
(unless (featurep 'swift-project-settings) | |
(add-to-list 'load-path | |
(concat this-directory "utils") | |
:append) | |
(let ((swift-project-directory this-directory)) | |
(require 'swift-project-settings))) | |
(set (make-local-variable 'swift-project-directory) | |
this-directory) | |
) | |
(tab-width . 2) | |
(fill-column . 80) | |
(c-file-style . "swift")) | |
(c++-mode | |
(whitespace-style face lines indentation:space)) | |
(c-mode | |
(whitespace-style face lines indentation:space)) | |
(objc-mode | |
(whitespace-style face lines indentation:space)) | |
(prog-mode | |
(eval add-hook 'prog-mode-hook | |
(lambda nil | |
(whitespace-mode 1)) | |
(not :APPEND) | |
:BUFFER-LOCAL)) | |
(swift-mode | |
(swift-find-executable-fn . swift-project-executable-find) | |
(swift-syntax-check-fn . swift-project-swift-syntax-check) | |
(whitespace-style face lines indentation:space) | |
(swift-basic-offset . 2) | |
(tab-always-indent . t))) | |
;; Local Variables: | |
;; eval: (whitespace-mode -1) | |
;; End: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment