1
0
Fork 0

fix: clean up theme section and change region highlight

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2024-02-22 23:52:48 -05:00
parent 5b8a18e5e1
commit c098ddb1c1
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -45,18 +45,17 @@
;; Cursor
(blink-cursor-mode 1)
;; Theme
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes")
;; Theme & Font
(load-theme 'nano t)
(nano-light)
;; Font
(add-to-list 'default-frame-alist '(font . "JetBrains Mono SemiBold-10"))
(defvar font-size 10)
(defvar font-family "JetBrains Mono SemiBold")
(set-frame-font (format "%s %d" font-family font-size))
(custom-set-faces
'(region ((t (:inherit nano-subtle :background "#EBE5F5"))))
'(variable-pitch ((t (:family "Linux Libertine" :height 125 :weight medium))))
'(fixed-pitch ((t (:family "JetBrains Mono SemiBold" :height 100))))
'(shr-text ((t (:inherit variable-pitch-text :family "Linux Libertine")))))