From b610aa3be62d261aceb5fe7d3c608823f4d70512 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Wed, 26 May 2021 00:46:42 -0400 Subject: [PATCH] Load tango-dark before fred theme, as a fallback --- .emacs.d/init.el | 1 + 1 file changed, 1 insertion(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index ab4bf4b..c71f669 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -6,6 +6,7 @@ custom-file (expand-file-name "~/.emacs.d/custom.el") gc-cons-threshold 100000000) (load custom-file t) +(load-theme 'tango-dark t) (load-theme 'fred t) (column-number-mode 1) (setq standard-indent 2)