From 2d28bdf85e5205a2db0b55ac6e9346a1085998f2 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Tue, 21 Feb 2023 13:23:55 -0500 Subject: [PATCH] updates for melpa 'stuff' ; add org-alert for full emacs client alerts on calendar items --- code/init.el | 15 +++++++++++++++ common/_global.el | 17 +++++------------ org/init.el | 18 +++++++++++++++++- 3 files changed, 37 insertions(+), 13 deletions(-) diff --git a/code/init.el b/code/init.el index 4e0a60e..bbcec0b 100644 --- a/code/init.el +++ b/code/init.el @@ -145,3 +145,18 @@ ; json (autoload 'json-mode "json-mode" "json editing mode" t) (add-to-list 'auto-mode-alist '("\\.json\\'" . json-mode)) +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(custom-safe-themes + '("dde643b0efb339c0de5645a2bc2e8b4176976d5298065b8e6ca45bc4ddf188b7" default))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(default ((t (:family "MonoLisa Variable" :height 100)))) + '(fixed-pitch ((t (:family "MonoLisa Variable" :height 120)))) + '(variable-pitch ((t (:family "Atkinson Hyperlegible" :height 120))))) diff --git a/common/_global.el b/common/_global.el index 782b3aa..24eed2d 100644 --- a/common/_global.el +++ b/common/_global.el @@ -340,18 +340,12 @@ position between last non-whitespace and `end-of-line'." ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; modus-themes setup and enable -(use-package modus-themes - :ensure - :init - (setq modus-themes-region '(no-extend) - modus-themes-fringes 'subtle - modus-themes-scale-headings t - ) - - (modus-themes-load-themes) - :config - (modus-themes-load-vivendi) +(require-theme 'modus-themes) +(setq modus-themes-region '(no-extend) + modus-themes-fringes 'subtle + modus-themes-scale-headings t ) +(load-theme 'modus-vivendi :no-confirm) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; focus on text (turn on as desired/needed ; off by default @@ -361,7 +355,6 @@ position between last non-whitespace and `end-of-line'." ; helm (setq completion-styles '(flex)) -(require 'helm-config) (require 'helm-color) (require 'helm-ls-git) diff --git a/org/init.el b/org/init.el index 022c8ee..6e00645 100644 --- a/org/init.el +++ b/org/init.el @@ -63,13 +63,14 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; additional packages (add-to-list 'package-selected-packages - '(ox-hugo org-super-agenda) + '(ox-hugo org-super-agenda org-alert) ) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Load misc extensions (require 'org) +(use-package org-alert) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Update/add auto file handling @@ -199,3 +200,18 @@ (define-key org-super-agenda-header-map (kbd "") #'origami-toggle-node) (define-key org-agenda-mode-map (kbd "") #'origami-toggle-node) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(default ((t (:family "MonoLisa Variable" :height 100)))) + '(fixed-pitch ((t (:family "MonoLisa Variable" :height 120)))) + '(variable-pitch ((t (:family "Atkinson Hyperlegible" :height 120))))) +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(custom-safe-themes + '("dde643b0efb339c0de5645a2bc2e8b4176976d5298065b8e6ca45bc4ddf188b7" "bfc0b9c3de0382e452a878a1fb4726e1302bf9da20e69d6ec1cd1d5d82f61e3d" default)))