diff --git a/README.org b/README.org index dc1756ae..5d61ed81 100644 --- a/README.org +++ b/README.org @@ -79,7 +79,7 @@ Let's start by making some basic ui changes like turning off the scrollbar, tool In order to have this config work on both my desktop with regular joe-schmoe monitors and my laptop with new-hotness HiDPI monitor, I will set the font size if my system is the laptop to much higher. #+begin_src emacs-lisp (if (string-equal (system-name) "syl") - (defvar chris/default-font-size 120) + (defvar chris/default-font-size 240) (defvar chris/default-font-size 120)) (defun chris/set-font-faces () diff --git a/init.el b/init.el index 449f33c2..613a1640 100644 --- a/init.el +++ b/init.el @@ -19,7 +19,7 @@ (column-number-mode +1) (if (string-equal (system-name) "syl") - (defvar chris/default-font-size 120) + (defvar chris/default-font-size 240) (defvar chris/default-font-size 120)) (defun chris/set-font-faces () @@ -1443,56 +1443,3 @@ interfere with the default `bongo-playlist-buffer'." gcmh-verbose t)) (setq warning-suppress-types '((comp))) -(custom-set-variables - ;; custom-set-variables was added by Custom. - ;; 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. - '(ansi-color-faces-vector - [default default default italic underline success warning error]) - '(awesome-tray-mode-line-active-color "#0031a9") - '(awesome-tray-mode-line-inactive-color "#d7d7d7") - '(custom-safe-themes - '("7b3d184d2955990e4df1162aeff6bfb4e1c3e822368f0359e15e2974235d9fa8" "ca70827910547eb99368db50ac94556bbd194b7e8311cfbdbdcad8da65e803be" "f4876796ef5ee9c82b125a096a590c9891cec31320569fc6ff602ff99ed73dca" "f2927d7d87e8207fa9a0a003c0f222d45c948845de162c885bf6ad2a255babfd" "fd22c8c803f2dac71db953b93df6560b6b058cb931ac12f688def67f08c10640" "c086fe46209696a2d01752c0216ed72fd6faeabaaaa40db9fc1518abebaf700d" "2c49d6ac8c0bf19648c9d2eabec9b246d46cb94d83713eaae4f26b49a8183fc4" "990e24b406787568c592db2b853aa65ecc2dcd08146c0d22293259d400174e37" "79278310dd6cacf2d2f491063c4ab8b129fee2a498e4c25912ddaa6c3c5b621e" "93ed23c504b202cf96ee591138b0012c295338f38046a1f3c14522d4a64d7308" "e3c64e88fec56f86b49dcdc5a831e96782baf14b09397d4057156b17062a8848" default)) - '(exwm-floating-border-color "#888888") - '(flymake-error-bitmap '(flymake-double-exclamation-mark modus-themes-fringe-red)) - '(flymake-note-bitmap '(exclamation-mark modus-themes-fringe-cyan)) - '(flymake-warning-bitmap '(exclamation-mark modus-themes-fringe-yellow)) - '(highlight-tail-colors '(("#aecf90" . 0) ("#c0efff" . 20))) - '(hl-sexp-background-color "#efebe9") - '(hl-todo-keyword-faces - '(("HOLD" . "#70480f") - ("TODO" . "#721045") - ("NEXT" . "#5317ac") - ("THEM" . "#8f0075") - ("PROG" . "#00538b") - ("OKAY" . "#30517f") - ("DONT" . "#315b00") - ("FAIL" . "#a60000") - ("BUG" . "#a60000") - ("DONE" . "#005e00") - ("NOTE" . "#863927") - ("KLUDGE" . "#813e00") - ("HACK" . "#813e00") - ("TEMP" . "#5f0000") - ("FIXME" . "#a0132f") - ("XXX+" . "#972500") - ("REVIEW" . "#005a5f") - ("DEPRECATED" . "#201f55"))) - '(ibuffer-deletion-face 'modus-themes-mark-del) - '(ibuffer-filter-group-name-face 'modus-themes-mark-symbol) - '(ibuffer-marked-face 'modus-themes-mark-sel) - '(ibuffer-title-face 'modus-themes-pseudo-header) - '(line-number-mode nil) - '(org-src-block-faces 'nil) - '(vc-annotate-background-mode nil) - '(xterm-color-names - ["black" "#a60000" "#005e00" "#813e00" "#0031a9" "#721045" "#00538b" "gray65"]) - '(xterm-color-names-bright - ["gray35" "#972500" "#315b00" "#70480f" "#2544bb" "#8f0075" "#30517f" "white"])) -(custom-set-faces - ;; custom-set-faces was added by Custom. - ;; 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. - )