diff options
author | Amin Bandali <bandali@gnu.org> | 2020-04-13 12:30:27 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2020-04-13 12:30:27 -0400 |
commit | fac1032c8088b37252bef5e1e07e03bf1e955c0b (patch) | |
tree | 19fd7b0a98d707787d41a7ff77ea2c822dfaa98b | |
parent | c64e010d0b51f1914d9bca263063506be9420540 (diff) | |
download | configs-fac1032c8088b37252bef5e1e07e03bf1e955c0b.tar.gz configs-fac1032c8088b37252bef5e1e07e03bf1e955c0b.tar.xz configs-fac1032c8088b37252bef5e1e07e03bf1e955c0b.zip |
Assimilate alloy-mode 0d05bdd
And disable flycheck for the time being.
Diffstat (limited to '')
-rw-r--r-- | .gitmodules | 3 | ||||
-rw-r--r-- | init.el | 49 | ||||
m--------- | lib/alloy-mode | 0 |
3 files changed, 28 insertions, 24 deletions
diff --git a/.gitmodules b/.gitmodules index c500cfb..bee832b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ +[submodule "alloy-mode"] + path = lib/alloy-mode + url = https://github.com/dwwmmn/alloy-mode.git [submodule "amx"] path = lib/amx url = https://github.com/DarwinAwardWinner/amx.git @@ -749,8 +749,8 @@ For disabling the behaviour for certain buffers and/or modes." ;; (global-company-mode t) ) -(comment (use-package flycheck + :disabled :defer 0.6 :hook (prog-mode . flycheck-mode) :bind @@ -765,10 +765,11 @@ For disabling the behaviour for certain buffers and/or modes." (setq flycheck-check-syntax-automatically '(mode-enabled save)) :custom (flycheck-mode-line-prefix "flyc")) -(use-package flyspell) +;; (use-package flyspell) ;; http://endlessparentheses.com/ispell-and-apostrophes.html (use-package ispell + :disabled :defer 0.6 :config ;; ’ can be part of a word @@ -809,28 +810,28 @@ For disabling the behaviour for certain buffers and/or modes." (use-package reveal :hook (emacs-lisp-mode . reveal-mode)) -(use-package elisp-mode) - -;; (use-package alloy-mode -;; :straight (:host github :repo "dwwmmn/alloy-mode") -;; :mode "\\.\\(als\\|dsh\\)\\'" -;; :config -;; (setq alloy-basic-offset 2) -;; ;; (defun b/alloy-simple-indent (start end) -;; ;; (interactive "r") -;; ;; ;; (if (region-active-p) -;; ;; ;; (indent-rigidly start end alloy-basic-offset) -;; ;; ;; (if (bolp) -;; ;; ;; (indent-rigidly (line-beginning-position) -;; ;; ;; (line-end-position) -;; ;; ;; alloy-basic-offset))) -;; ;; (indent-to (+ (current-column) alloy-basic-offset))) -;; :bind (:map alloy-mode-map -;; ("RET" . electric-newline-and-maybe-indent) -;; ;; ("TAB" . b/alloy-simple-indent) -;; ("TAB" . indent-for-tab-command)) -;; :hook (alloy-mode . (lambda () (setq-local indent-tabs-mode nil)))) +;; (use-package elisp-mode) +(use-package alloy-mode + :mode "\\.\\(als\\|dsh\\)\\'" + :config + (setq alloy-basic-offset 2) + ;; (defun b/alloy-simple-indent (start end) + ;; (interactive "r") + ;; ;; (if (region-active-p) + ;; ;; (indent-rigidly start end alloy-basic-offset) + ;; ;; (if (bolp) + ;; ;; (indent-rigidly (line-beginning-position) + ;; ;; (line-end-position) + ;; ;; alloy-basic-offset))) + ;; (indent-to (+ (current-column) alloy-basic-offset))) + :bind (:map alloy-mode-map + ("RET" . electric-newline-and-maybe-indent) + ;; ("TAB" . b/alloy-simple-indent) + ("TAB" . indent-for-tab-command)) + :hook (alloy-mode . (lambda () (setq-local indent-tabs-mode nil)))) + +(comment (eval-when-compile (defvar lean-mode-map)) (use-package lean-mode :defer 0.4 @@ -845,7 +846,7 @@ For disabling the behaviour for certain buffers and/or modes." lean-input-user-translations '(("/" "/"))) (lean-input-setup)) -(use-package mhtml-mode) +;; (use-package mhtml-mode) (use-package sgml-mode :config diff --git a/lib/alloy-mode b/lib/alloy-mode new file mode 160000 +Subproject 0d05bdd10c77ec04c3d61eccf67e68c08284951 |