~lucymcphail/dotfiles

6941c29d8ca6ee08fc94459e64d6cc604ae57f0c — Lucy McPhail 2 months ago cab25ca
Add colors to compilation buffers
2 files changed, 5 insertions(+), 3 deletions(-)

M dot_emacs.d/lucy/lucy-essentials.el
M dot_emacs.d/lucy/lucy-programming.el
M dot_emacs.d/lucy/lucy-essentials.el => dot_emacs.d/lucy/lucy-essentials.el +0 -2
@@ 10,8 10,6 @@
(setq sentence-end-double-space nil)
(setq dired-dwim-target t)

(setq compilation-ask-about-save nil)

(global-auto-revert-mode 1)
(setq global-auto-revert-non-file-buffers t
      auto-revert-verbose nil)

M dot_emacs.d/lucy/lucy-programming.el => dot_emacs.d/lucy/lucy-programming.el +5 -1
@@ 1,10 1,14 @@
;; -*- lexical-binding: t -*-

(setq compilation-ask-about-save nil
      compilation-environment '("TERM=xterm-256color"))
(add-hook 'compilation-filter-hook
	  'ansi-color-compilation-filter)

(use-package eglot
  :ensure t
  :defer nil
  :bind (("C-c l s" . eglot)
	 :map eglot-mode-map
	 ("C-c l a" . eglot-code-actions)
	 ("C-c l r" . eglot-rename)
	 ("C-c l f" . eglot-format)))