diff options
| author | Jack Jamison <jjamison@litecoms.com> | 2026-07-30 15:03:29 -0400 |
|---|---|---|
| committer | Jack Jamison <jjamison@litecoms.com> | 2026-07-30 15:03:29 -0400 |
| commit | f220a0ed999a06d43eaead3b6a86aaf36910d6c6 (patch) | |
| tree | 810686041b410b943f321639cd354e78a6190614 /.config/emacs/style.el | |
| parent | d7fb76f6e7d942740c48016864de8b65588e336c (diff) | |
lots of great improvements
Diffstat (limited to '.config/emacs/style.el')
| -rw-r--r-- | .config/emacs/style.el | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/.config/emacs/style.el b/.config/emacs/style.el index 91c2a10..69a99a0 100644 --- a/.config/emacs/style.el +++ b/.config/emacs/style.el @@ -1,17 +1,6 @@ -;; get rid of ui -(menu-bar-mode -1) -(scroll-bar-mode -1) -(tool-bar-mode -1) - +;; turn off blink cursor (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 @@ -24,6 +13,10 @@ '(font-lock-string-face ((t (:foreground "#98dc5f")))) ) +;; ansi color +(use-package ansi-color + :hook (compilation-filter . ansi-color-compilation-filter)) + ;; icons (use-package nerd-icons |
