diff options
| author | tslil <> | 2022-04-26 18:24:34 -0400 |
|---|---|---|
| committer | tslil <> | 2022-04-26 18:24:34 -0400 |
| commit | 02de7b99d4b4b177b6953d168629242f55b2f992 (patch) | |
| tree | 6548cdcbd0e784ea65eed1569b2c61ccca87b9cb /emacs | |
| parent | f2c199c372fa365e1ee47b0eff1ee7295963cb7f (diff) | |
slight tweak to font
Diffstat (limited to 'emacs')
| -rw-r--r-- | emacs/inits/01-basic.el | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/emacs/inits/01-basic.el b/emacs/inits/01-basic.el index a33cb21..b553bc8 100644 --- a/emacs/inits/01-basic.el +++ b/emacs/inits/01-basic.el @@ -1,4 +1,4 @@ -;; Time-stamp: <2022-04-17 15h15 EDT (academic)> +;; Time-stamp: <2022-04-19 22h52 EDT (academic)> ;; ----------------------------------------------------------------------------- ;; Interface @@ -36,18 +36,23 @@ (add-to-list 'custom-theme-load-path "~/.emacs.d/themes/") (when (eq 'x (window-system)) - ;; Time-based theming + ;;; Time-based theming ;; (if (<= 20 (nth 2 (decode-time))) ;; (load-theme 'nord t) ;; (load-theme 'solo-jazz t)) - (load-theme 'nord t) ;; turns out i just like this one though + ;; (load-theme 'solo-jazz t) + (load-theme 'acme t) (set-face-attribute 'font-lock-comment-face nil :slant 'italic) - (set-face-attribute 'default nil :font "Iosevka-12") - (set-face-attribute 'variable-pitch nil :font "Frank Ruehl CLM-16")) + ;; (set-face-attribute 'region nil :background "orange") + (set-face-attribute 'default nil :font "Iosevka-14") + (set-face-attribute 'variable-pitch nil :font "Frank Ruehl CLM-18")) + + +(setq-default line-spacing nil) (blink-cursor-mode 0) (setq cursor-type 'box) -(set-cursor-color "orange") +;; (set-cursor-color "orange") (set-fringe-style 0) ;; (set-fringe-mode 128) @@ -78,7 +83,8 @@ (setq-default truncate-lines t truncate-partial-width-windows nil) -(setq scroll-step 1) +(setq scroll-step 1 + scroll-margin 5) (setq next-line-add-newlines nil) |
