diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-11-29 08:36:21 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-11-29 08:36:21 +0000 |
commit | bfdcf4103cab6c630f7ec11bddfff7358e25febd (patch) | |
tree | 78ddf3a7366e00aee03aad220ac5019388511f65 | |
parent | 4813f06a1eb8b32110a75bb50ead928aadcece34 (diff) |
font changes
-rw-r--r-- | custom.el | 4 | ||||
-rw-r--r-- | init.el | 14 |
2 files changed, 9 insertions, 9 deletions
@@ -6,7 +6,7 @@ '(company-show-quick-access t nil nil "Customized with use-package company") '(custom-safe-themes '("3d2e532b010eeb2f5e09c79f0b3a277bfc268ca91a59cdda7ffd056b868a03bc" default)) - '(display-line-numbers-type 'relative t) + '(display-line-numbers-type 'relative) '(display-time-mode t) '(package-selected-packages '(embark-consult embark marginalia markdown-mode eglot helm popup async notmuch ivy calfw-org calfw unicode-fonts deft cider org-roam org yasnippet-snippets which-key vterm use-package rainbow-delimiters pdf-tools paredit magit ledger-mode gruvbox-theme flycheck expand-region evil elpy elfeed-score diminish counsel cmake-mode browse-kill-ring beacon auto-package-update amx ace-window ace-jump-mode)) @@ -16,4 +16,4 @@ ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. - '(default ((t (:family "Liberation Mono" :foundry "1ASC" :slant normal :weight normal :height 113 :width normal))))) + '(default ((t (:family "FreeMono" :foundry "GNU " :slant normal :weight normal :height 128 :width normal))))) @@ -179,13 +179,13 @@ Restart works only on graphic display." (setq visible-bell t) ;; font -(cond - ((string-equal (system-name) "archdesk") - (when (member "Hack" (font-family-list)) - (add-to-list 'default-frame-alist '(font . "Hack-14")))) - ((string-equal (system-name) "pop_os") - (when (member "Hack" (font-family-list)) - (add-to-list 'default-frame-alist '(font . "Hack-10"))))) +;; (cond +;; ((string-equal (system-name) "archdesk") +;; (when (member "Hack" (font-family-list)) +;; (add-to-list 'default-frame-alist '(font . "Hack-14")))) +;; ((string-equal (system-name) "pop_os") +;; (when (member "Hack" (font-family-list)) +;; (add-to-list 'default-frame-alist '(font . "Hack-10"))))) ;; theme (use-package gruber-darker-theme |