From 4a13bc86ef95fe0e6e684d786a9b3d693598ad8e Mon Sep 17 00:00:00 2001 From: octaspire Date: Tue, 22 Dec 2020 11:09:53 +0200 Subject: [PATCH] GNU/Emacs: use package 'rg', change font size --- emacs/.config/emacs/init.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/emacs/.config/emacs/init.el b/emacs/.config/emacs/init.el index b6aa280..5594389 100644 --- a/emacs/.config/emacs/init.el +++ b/emacs/.config/emacs/init.el @@ -178,6 +178,11 @@ adding it to the kill ring as a new kill." :ensure t :bind (("C-c M-s" . magit-status)))) +(when (executable-find "rg") + (use-package rg + :ensure t + :config (rg-enable-default-bindings))) + (use-package nhexl-mode :ensure t) @@ -573,7 +578,7 @@ adding it to the kill ring as a new kill." (when (or (file-exists-p "~/.fonts/IBMPlexMono-Regular.ttf") (file-exists-p "~/Library/Fonts/IBMPlexMono-Regular.ttf")) - (let ((h 100)) + (let ((h 120)) (custom-set-faces `(default ((t (:family "IBM Plex Mono" :height ,h)))) `(bold ((t (:weight bold :family "IBM Plex Mono" :height ,h)))) -- 2.30.1