diff options
author | Amin Bandali <bandali@kelar.org> | 2025-01-30 16:30:12 -0500 |
---|---|---|
committer | Amin Bandali <bandali@kelar.org> | 2025-01-30 16:30:12 -0500 |
commit | f44a20aca8c916dd599d92d5b2336eb88b40b8fa (patch) | |
tree | 26329c8349401a286c30c8d0539005810a1e9412 /.emacs.d/init.el | |
parent | 7b8b021044b9412894207127e0ea78ef9951f5d2 (diff) | |
download | configs-f44a20aca8c916dd599d92d5b2336eb88b40b8fa.tar.gz configs-f44a20aca8c916dd599d92d5b2336eb88b40b8fa.tar.xz configs-f44a20aca8c916dd599d92d5b2336eb88b40b8fa.zip |
Some font-related updates
Diffstat (limited to '')
-rw-r--r-- | .emacs.d/init.el | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 4b5dc0b..841a452 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1,6 +1,6 @@ ;;; init.el --- bandali's emacs configuration -*- lexical-binding: t -*- -;; Copyright (c) 2018-2024 Amin Bandali <bandali@gnu.org> +;; Copyright (c) 2018-2025 Amin Bandali <bandali@gnu.org> ;; This program is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -309,14 +309,23 @@ plain variables. This means that `setopt' will execute any t 'emoji `(,emoji-font . "iso10646-1") nil 'prepend))) (with-eval-after-load 'faces (let ((grey "#e7e7e7")) + ;; (set-face-attribute 'default nil + ;; :font "Source Code Pro" + ;; :height 113 ; 130 ; 105 + ;; :weight 'medium) + ;; (set-face-attribute 'fixed-pitch nil + ;; :font "Source Code Pro" + ;; :weight 'medium) + ;; (set-face-attribute 'default nil + ;; :font "Inconsolata Medium-12:hinting=true:autohint=true") + ;; (set-face-attribute 'fixed-pitch nil + ;; :font "Inconsolata Medium-12:hinting=true:autohint=true") (set-face-attribute 'default nil - :font "Source Code Pro" - :height 105 ; 113 - :weight 'medium) + :font "Source Code Pro Medium-10.5") (set-face-attribute 'fixed-pitch nil - :font "Source Code Pro" - :weight 'medium) + :font "Source Code Pro Medium-10.5") (set-face-attribute 'mode-line nil + :box '(:line-width 2 :style released-button) :background grey :inherit 'fixed-pitch)))) |