diff --git a/.gitignore b/.gitignore index 9bc8f14..c008f33 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,5 @@ computers/*/fish/priv +emacs/auto-save-list +emacs/backup +emacs/custom.el +emacs/elpa diff --git a/emacs/early-init.el b/emacs/early-init.el index 87050f1..0464f13 100644 --- a/emacs/early-init.el +++ b/emacs/early-init.el @@ -14,7 +14,8 @@ ;; important ergonomics (setq fill-column 80 - sentence-end-double-space nil) + sentence-end-double-space nil + ring-bell-function #'ignore) (defalias #'yes-or-no-p #'y-or-n-p) @@ -40,4 +41,9 @@ (set-fontset-font t '(#x2e80 . #x9fff) "Noto Sans CJK JP") +(setq agw-mode-line-family + (if (string-equal system-type "windows-nt") + "Noto Mono" + "Iosevka")) + ;; EOF diff --git a/emacs/init.el b/emacs/init.el index 7f3be42..3c88fe4 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -86,8 +86,8 @@ header-line header-line-highlight)) (set-face-attribute face nil - :family "Iosevka" :height 120 + :family agw-mode-line-family :weight 'normal :width 'normal)) (set-face-attribute 'mode-line nil