From 392a34ad6dd73a059850082f456fc6fef4933459 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Wed, 25 Jan 2023 09:06:30 -0800 Subject: [PATCH] Comment out ansi-coloring Emacs code Was breaking in latest version of DOOM --- doom/config.el | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doom/config.el b/doom/config.el index 37f6ac1..2a757db 100644 --- a/doom/config.el +++ b/doom/config.el @@ -103,14 +103,14 @@ (setq-default eshell-cmpl-ignore-case t) ;; Show colors in log files -(add-load-path! ".") -(require 'tty-format) -(defun display-ansi-colors () - (interactive) - (format-decode-buffer 'ansi-colors)) -(add-hook 'find-file-hook 'tty-format-guess) -(add-to-list 'auto-mode-alist '("\\.log\\'" . display-ansi-colors)) -(add-to-list 'auto-mode-alist '("\\.log\\.out\\'" . display-ansi-colors)) +;; (add-load-path! ".") +;; (require 'tty-format) +;; (defun display-ansi-colors () +;; (interactive) +;; (format-decode-buffer 'ansi-colors)) +;; (add-hook 'find-file-hook 'tty-format-guess) +;; (add-to-list 'auto-mode-alist '("\\.log\\'" . display-ansi-colors)) +;; (add-to-list 'auto-mode-alist '("\\.log\\.out\\'" . display-ansi-colors)) ;; Disable smartparens' insistence on inserting extraneous colons in Python