Disable flycheck in elisp
This commit is contained in:
@@ -7,16 +7,18 @@
|
|||||||
|
|
||||||
;; Rerunning checks on every newline is a mote excessive.
|
;; Rerunning checks on every newline is a mote excessive.
|
||||||
(delq 'new-line flycheck-check-syntax-automatically)
|
(delq 'new-line flycheck-check-syntax-automatically)
|
||||||
|
|
||||||
|
(setq-default flycheck-disabled-checkers '(emacs-lisp-checkdoc))
|
||||||
;; And don't recheck on idle as often
|
;; And don't recheck on idle as often
|
||||||
(setq flycheck-idle-change-delay 1.0)
|
(setq flycheck-idle-change-delay 1.0
|
||||||
|
|
||||||
;; For the above functionality, check syntax in a buffer that you switched to
|
;; For the above functionality, check syntax in a buffer that you switched to
|
||||||
;; only briefly. This allows "refreshing" the syntax check state for several
|
;; only briefly. This allows "refreshing" the syntax check state for several
|
||||||
;; buffers quickly after e.g. changing a config file.
|
;; buffers quickly after e.g. changing a config file.
|
||||||
(setq flycheck-buffer-switch-check-intermediate-buffers t)
|
flycheck-buffer-switch-check-intermediate-buffers t
|
||||||
|
|
||||||
;; Display errors a little quicker (default is 0.9s)
|
;; Display errors a little quicker (default is 0.9s)
|
||||||
(setq flycheck-display-errors-delay 0.25))
|
flycheck-display-errors-delay 0.25))
|
||||||
|
|
||||||
(use-package flyover
|
(use-package flyover
|
||||||
:diminish
|
:diminish
|
||||||
|
|||||||
@@ -123,11 +123,11 @@ the element after the #+HEADER: tag."
|
|||||||
:init
|
:init
|
||||||
(with-eval-after-load 'org
|
(with-eval-after-load 'org
|
||||||
(setq org-hide-emphasis-markers t
|
(setq org-hide-emphasis-markers t
|
||||||
org-pretty-entities t))
|
org-pretty-entities t))
|
||||||
:config
|
:config
|
||||||
(setq org-modern-table-vertical 1
|
(setq org-modern-table-vertical 1
|
||||||
org-modern-table-horizontal 0.2
|
org-modern-table-horizontal 0.2
|
||||||
org-modern-todo-faces
|
org-modern-todo-faces
|
||||||
'(("TODO" :inverse-video t :inherit org-todo)
|
'(("TODO" :inverse-video t :inherit org-todo)
|
||||||
("PROJ" :inverse-video t :inherit +org-todo-project)
|
("PROJ" :inverse-video t :inherit +org-todo-project)
|
||||||
("STRT" :inverse-video t :inherit +org-todo-active)
|
("STRT" :inverse-video t :inherit +org-todo-active)
|
||||||
@@ -137,10 +137,10 @@ the element after the #+HEADER: tag."
|
|||||||
("[?]" :inverse-video t :inherit +org-todo-onhold)
|
("[?]" :inverse-video t :inherit +org-todo-onhold)
|
||||||
("KILL" :inverse-video t :inherit +org-todo-cancel)
|
("KILL" :inverse-video t :inherit +org-todo-cancel)
|
||||||
("NO" :inverse-video t :inherit +org-todo-cancel))
|
("NO" :inverse-video t :inherit +org-todo-cancel))
|
||||||
org-modern-list '((43 . "➤")
|
org-modern-list '((43 . "➤")
|
||||||
(45 . "–")
|
(45 . "–")
|
||||||
(42 . "•"))
|
(42 . "•"))
|
||||||
))
|
))
|
||||||
|
|
||||||
(use-package org-modern-indent
|
(use-package org-modern-indent
|
||||||
:ensure (org-modern-indent :type git :host github :repo "jdtsmith/org-modern-indent")
|
:ensure (org-modern-indent :type git :host github :repo "jdtsmith/org-modern-indent")
|
||||||
@@ -153,8 +153,7 @@ the element after the #+HEADER: tag."
|
|||||||
(setq org-appear-autoemphasis t
|
(setq org-appear-autoemphasis t
|
||||||
org-appear-autosubmarkers t
|
org-appear-autosubmarkers t
|
||||||
org-appear-autolinks nil)
|
org-appear-autolinks nil)
|
||||||
(run-at-time nil nil #'org-appear--set-elements)
|
(run-at-time nil nil #'org-appear--set-elements))
|
||||||
)
|
|
||||||
|
|
||||||
(use-package hl-todo
|
(use-package hl-todo
|
||||||
:hook (prog-mode . hl-todo-mode)
|
:hook (prog-mode . hl-todo-mode)
|
||||||
|
|||||||
Reference in New Issue
Block a user