aboutsummaryrefslogtreecommitdiff
path: root/.config/emacs/style.el
diff options
context:
space:
mode:
authorJack Jamison <jjamison@litecoms.com>2026-07-30 11:10:16 -0400
committerJack Jamison <jjamison@litecoms.com>2026-07-30 11:10:16 -0400
commitd7fb76f6e7d942740c48016864de8b65588e336c (patch)
tree700941096404d109264db1cc5d0d468df825fcde /.config/emacs/style.el
parent244bafc426222b58d66e57d5eef7d4e2bccfddf1 (diff)
improvements and stuff
Diffstat (limited to '.config/emacs/style.el')
-rw-r--r--.config/emacs/style.el33
1 files changed, 5 insertions, 28 deletions
diff --git a/.config/emacs/style.el b/.config/emacs/style.el
index b4071a8..91c2a10 100644
--- a/.config/emacs/style.el
+++ b/.config/emacs/style.el
@@ -3,18 +3,17 @@
(scroll-bar-mode -1)
(tool-bar-mode -1)
-;; fonts
-(let ((mono-spaced-font "DejaVuSansMono")
- (proportionately-spaced-font "DejaVuSans"))
+(blink-cursor-mode -1)
+
+;; fonts - https://github.com/thep0y/monaco-nerd-font/releases/tag/v0.2.2
+(let ((mono-spaced-font "Monaco Nerd Font Mono")
+ (proportionately-spaced-font "MonacoLigaturized Nerd Font"))
(set-face-attribute 'default nil :family mono-spaced-font :height 100)
(set-face-attribute 'fixed-pitch nil :family mono-spaced-font :height 1.0)
(set-face-attribute 'variable-pitch nil :family proportionately-spaced-font :height 1.0))
;; theme
-
(load-theme 'wombat)
-
-
(custom-set-faces
'(default ((t (:inherit nil :stipple nil :background "#222323" :foreground "#f6f3e8" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 115 :width normal :family "Monaco"))))
'(highlight ((t (:underline nil))))
@@ -25,28 +24,6 @@
'(font-lock-string-face ((t (:foreground "#98dc5f"))))
)
- ;; (custom-set-faces
- ;; '(highlight ((t (:underline nil)))))
- ;; '(dired-directory ((t (:inherit (quote font-lock-keyword-face)))))
- ;; '(dired-header ((t (:inherit (quote font-lock-comment-face)))))
- ;; '(font-lock-keyword-face ((t (:foreground "#86b7dd"))))
- ;; '(font-lock-string-face ((t (:foreground "#98dc5f"))))
- ;; '(fringe ((t (:background "#222323"))))
- ;; '(ido-first-match ((t (:inherit (quote font-lock-comment-face)))))
- ;; '(ido-only-match ((t (:inherit (quote font-lock-comment-face)))))
- ;; '(ido-subdir ((t (:inherit (quote font-lock-keyword-face)))))
- ;; '(linum ((t (:inherit (shadow default) :background "#191919" :foreground "#505050"))))
- ;; '(success ((t (:inherit (quote font-lock-keyword-face) :weight normal))))
- ;; '(vertical-border ((t (:foreground "#303030"))))
- ;; '(company-scrollbar-bg ((t (:background "#303030"))))
- ;; '(company-scrollbar-fg ((t (:background "#99968b"))))
- ;; '(company-tooltip ((t (:background "#303030"))))
- ;; '(company-tooltip-annotation ((t (:inherit (quote font-lock-comment-face)))))
- ;; '(company-tooltip-common ((t (:inherit (quote font-lock-comment-face)))))
- ;; '(company-tooltip-common-selection ((t (:inherit (quote font-lock-keyword-face) :weight normal))))
- ;; '(company-tooltip-mouse ((t (:inherit (quote font-lock-keyword-face) :weight normal))))
- ;; '(company-tooltip-selection ((t (:inherit (quote font-lock-keyword-face) :weight normal))))
-
;; icons
(use-package nerd-icons