lang/emacs-lisp: enable flycheck-mode if not in emacs.d

This commit is contained in:
Henrik Lissner 2017-05-14 11:56:03 +02:00
parent 653e80e655
commit 629c71d4bc
2 changed files with 6 additions and 1 deletions

View file

@ -89,7 +89,7 @@
+ [ ] twitter
+ [ ] present
** 2.0.3 [5/19]
** 2.0.3 [6/20]
+ [ ] lang/org: fix janky visual line motions (~evil-next-visual-line~, etc)
+ [ ] lang/org: fix janky cursor positioning when manipulating org-table cells
+ [ ] lang/org: don't move cursor when realigning org tables
@ -106,6 +106,7 @@
+ [ ] tools/upload: add ~+upload/open-remote-file~ command to open current file
on the remote (with TRAMP)
+ [ ] tools/regex: PCRE regex editor, maybe ~re-builder~ & ~pcre2el~?
+ [X] lang/emacs-lisp: activate flycheck-mode in non-emacs.d files
+ [X] Fix evil normal-mode keybindings in help-mode popups
+ [X] Fix help-mode links opening new popups #ui
Added ~:noclone~ property to popup rules

View file

@ -29,6 +29,10 @@
(auto-compile-on-save-mode +1)
(rainbow-delimiters-mode +1)
(when (and buffer-file-name
(not (file-in-directory-p buffer-file-name doom-emacs-dir)))
(flycheck-mode +1))
(font-lock-add-keywords
nil `(;; Display "lambda" as λ
("(\\(lambda\\)" (1 (ignore (compose-region (match-beginning 1) (match-end 1) #'decompose-region))))