diff options
Diffstat (limited to 'emacs/inits/01-basic.el')
| -rw-r--r-- | emacs/inits/01-basic.el | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/emacs/inits/01-basic.el b/emacs/inits/01-basic.el index 55a8dcb..9493df4 100644 --- a/emacs/inits/01-basic.el +++ b/emacs/inits/01-basic.el @@ -1,4 +1,4 @@ -;; Time-stamp: <2021-04-19 09h47 EDT (hobbies)> +;; Time-stamp: <2021-06-29 17h20 EDT (hobbies)> ;; ----------------------------------------------------------------------------- ;; Interface @@ -33,18 +33,21 @@ (split-window-horizontally) (enlarge-to-fill))) -(blink-cursor-mode 0) -(setq cursor-type 'box) -(set-cursor-color "black") - (add-to-list 'custom-theme-load-path "~/.emacs.d/themes/") (when (eq 'x (window-system)) - (use-package nord-theme :ensure t) - (load-theme 'nord t) + ;;; Time-based theming + ;; (if (<= 20 (nth 2 (decode-time))) + ;; (load-theme 'nord t) + ;; (load-theme 'solo-jazz t)) + (load-theme 'solo-jazz t) ;; turns out i just like this one though (set-face-attribute 'region nil :background "orange") (set-face-attribute 'default nil :font "Iosevka-18")) +(blink-cursor-mode 0) +(setq cursor-type 'box) +(set-cursor-color "black") + (set-fringe-style 0) ;; (set-fringe-mode 128) |
