From ef236681a5a0aec4909b77f97a660caf6f142b3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Hauspie?= <michael.hauspie@univ-lille.fr> Date: Mon, 8 Jul 2024 13:55:00 +0200 Subject: [PATCH] Fix font setup --- configuration.org | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/configuration.org b/configuration.org index a3f1918..6c5ab02 100644 --- a/configuration.org +++ b/configuration.org @@ -294,11 +294,10 @@ Some of my configuration entries where borrowed from other people, see #+begin_src emacs-lisp (if (eq system-type 'darwin) ; Font on MacOS - (setq mh-font "Fira Code-20") + (setq mh-font "Fira Code-13") ; Font on Other Systems (Linux actually, I do not use emacs on windows) (setq mh-font "DejaVu Sans Mono-12") ) -(add-to-list 'default-frame-alist '(font . mh-font )) (set-face-attribute 'default t :font mh-font ) (set-frame-font mh-font nil t) #+end_src @@ -1232,10 +1231,6 @@ emacsclient -a emacs ... (use-package ssh-config-mode) #+end_src - #+RESULTS: - : t - - * To check later ** TODO Try helm -- GitLab