diff options
author | mattkae <mattkae@protonmail.com> | 2023-07-07 08:16:26 -0400 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2023-07-07 08:16:26 -0400 |
commit | 2d8f8f885f8652c2b61a78467538b0903435f796 (patch) | |
tree | 4a5642a4efec2ebcf8c6acdadeebcf91b0e343de /lisp | |
parent | 5cca3cbe1a8aac39f91e2da9689c34d87b86edda (diff) | |
parent | a104310326074a3232dc0cdcd02d3aefc3d6591a (diff) |
Merge branch 'master' of matthewkosarek.xyz:/srv/git/emacs_config
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/general.el | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/general.el b/lisp/general.el index 3bf1072..a639b0d 100644 --- a/lisp/general.el +++ b/lisp/general.el @@ -11,6 +11,8 @@ kept-old-versions 2 version-control t) +(add-to-list 'default-frame-alist '(font . "JetBrains Mono-10")) + ;; Initial major mode (setq initial-major-mode 'text-mode) @@ -57,11 +59,12 @@ (setq-default indent-tabs-mode nil) ; use spaces only if nil (setq-default tab-width 2) ; Assuming you want your tabs to be four spaces wide -(setq default-font "JetBrains Mono Nerd") -(setq default-font-size 14) -(setq current-font-size default-font-size) +(set-face-attribute 'default nil + :family "JetBrains Mono" + :height 100 + :weight 'normal + :width 'normal) -;;(set-face-attribute 'default nil :height 110 :family "Consolas") (set-language-environment "UTF-8") (set-default-coding-systems 'utf-8) |