Emacs 禁用flycheck模式和美化符号模式

Emacs 禁用flycheck模式和美化符号模式,emacs,Emacs,我的emacs.d克隆自 它默认启用美化符号模式和飞行检查模式 搜索custom.el,但未找到相关设置 如何从myinit.el中禁用它们?(美化符号模式-1) C-h f美化符号模式: prettifysymbols模式是 “prog mode.el”。 (美化符号模式和可选参数) 切换“美化符号”模式。 使用前缀参数ARG,如果ARG为,则启用美化符号模式 肯定,否则禁用它。如果从Lisp调用,则启用 忽略ARG或nil时的模式。 启用“美化符号”模式和字体锁定时,符号 根据规则美化(显示

我的emacs.d克隆自

它默认启用
美化符号模式
飞行检查模式

搜索custom.el,但未找到相关设置

如何从my
init.el中禁用它们?

(美化符号模式-1)

C-h f美化符号模式

prettifysymbols模式是
“prog mode.el”。
(美化符号模式和可选参数)
切换“美化符号”模式。
使用前缀参数ARG,如果ARG为,则启用美化符号模式
肯定,否则禁用它。如果从Lisp调用,则启用
忽略ARG或nil时的模式。
启用“美化符号”模式和字体锁定时,符号
根据规则美化(显示为合成字符)
在“美化符号列表”(参见)中,这些符号是本地定义的
通过支持美化的主要方式。添加进一步的自定义项
对于给定的主模式,您可以修改“美化符号列表”,如下所示:
(添加钩子'emacs lisp模式钩子
(lambda()
(按“(”
prettify-symbols-mode is an interactive compiled Lisp function in
‘prog-mode.el’.

(prettify-symbols-mode &optional ARG)

Toggle Prettify Symbols mode.
With a prefix argument ARG, enable Prettify Symbols mode if ARG is
positive, and disable it otherwise.  If called from Lisp, enable
the mode if ARG is omitted or nil.

When Prettify Symbols mode and font-locking are enabled, symbols are
prettified (displayed as composed characters) according to the rules
in ‘prettify-symbols-alist’ (which see), which are locally defined
by major modes supporting prettifying.  To add further customizations
for a given major mode, you can modify ‘prettify-symbols-alist’ thus:

  (add-hook 'emacs-lisp-mode-hook
            (lambda ()
              (push '("<=" . ?≤) prettify-symbols-alist)))

You can enable this mode locally in desired buffers, or use
‘global-prettify-symbols-mode’ to enable it for all modes that
support it.