Attempt to fix fonts too big on windows
This commit is contained in:
parent
d10ed050d8
commit
9f6e20b190
@ -71,7 +71,18 @@ console."
|
|||||||
(setq use-dialog-box nil)
|
(setq use-dialog-box nil)
|
||||||
;; Pixel scrolling. Only in emacs 29+...
|
;; Pixel scrolling. Only in emacs 29+...
|
||||||
(if (>= (string-to-number emacs-version) 29)
|
(if (>= (string-to-number emacs-version) 29)
|
||||||
(pixel-scroll-precision-mode t)))
|
(pixel-scroll-precision-mode t)
|
||||||
|
(pixel-scroll-mode t))
|
||||||
|
;; Size of text. お前 わ 毛 しんでる.
|
||||||
|
(if (eq system-type 'gnu/linux)
|
||||||
|
(progn
|
||||||
|
(set-face-attribute 'fixed-pitch nil :height 130)
|
||||||
|
(set-face-attribute 'default nil :height 130)
|
||||||
|
(set-face-attribute 'variable-pitch nil :height 140))
|
||||||
|
(progn
|
||||||
|
(set-face-attribute 'fixed-pitch nil :height 100)
|
||||||
|
(set-face-attribute 'default nil :height 100)
|
||||||
|
(set-face-attribute 'variable-pitch nil :height 110))))
|
||||||
|
|
||||||
(defun toggle-ja-input ()
|
(defun toggle-ja-input ()
|
||||||
"Switch between english and japanese. Broken."
|
"Switch between english and japanese. Broken."
|
||||||
|
@ -38,14 +38,11 @@
|
|||||||
|
|
||||||
;; sane font stuff
|
;; sane font stuff
|
||||||
(set-face-attribute 'fixed-pitch nil
|
(set-face-attribute 'fixed-pitch nil
|
||||||
:family "MesloLGS NF"
|
:family "MesloLGS NF")
|
||||||
:height 130)
|
|
||||||
(set-face-attribute 'default nil
|
(set-face-attribute 'default nil
|
||||||
:family "MesloLGS NF"
|
:family "MesloLGS NF")
|
||||||
:height 130)
|
|
||||||
(set-face-attribute 'variable-pitch nil
|
(set-face-attribute 'variable-pitch nil
|
||||||
:inherit 'default
|
:inherit 'default
|
||||||
:height 140
|
|
||||||
:family "Sans Serif")
|
:family "Sans Serif")
|
||||||
|
|
||||||
(setq rainbow-delimiters-max-face-count 2)
|
(setq rainbow-delimiters-max-face-count 2)
|
||||||
|
Loading…
Reference in New Issue
Block a user