diff options
author | Amin Bandali <bandali@gnu.org> | 2024-02-24 12:40:43 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2024-02-24 12:40:43 -0500 |
commit | 60df8b6d5b80318718429339eb56ed34c0330384 (patch) | |
tree | e94d9b4490d81e70aab90b1a014d6e018b476c35 | |
parent | 2cd554c69e1958d4b19b4ee48dc625bffe91a813 (diff) | |
download | configs-60df8b6d5b80318718429339eb56ed34c0330384.tar.gz configs-60df8b6d5b80318718429339eb56ed34c0330384.tar.xz configs-60df8b6d5b80318718429339eb56ed34c0330384.zip |
Don't enable global-prettify-symbols-mode for prog-mode
-rw-r--r-- | .emacs.d/init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 10dc73c..bf20c3e 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -695,8 +695,8 @@ for all frames." (setq save-place-file (b/var "save-place.el")) (save-place-mode)) -(with-eval-after-load 'prog-mode - (global-prettify-symbols-mode)) +;; (with-eval-after-load 'prog-mode +;; (global-prettify-symbols-mode)) (add-to-list 'auto-mode-alist '("\\.*rc$" . conf-mode)) (add-to-list 'auto-mode-alist '("\\.bashrc$" . sh-mode)) |