updates for melpa 'stuff' ; add org-alert for full emacs client alerts on calendar items
This commit is contained in:
parent
ffaa757ded
commit
2d28bdf85e
15
code/init.el
15
code/init.el
|
@ -145,3 +145,18 @@
|
||||||
; json
|
; json
|
||||||
(autoload 'json-mode "json-mode" "json editing mode" t)
|
(autoload 'json-mode "json-mode" "json editing mode" t)
|
||||||
(add-to-list 'auto-mode-alist '("\\.json\\'" . json-mode))
|
(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)))))
|
||||||
|
|
|
@ -340,18 +340,12 @@ position between last non-whitespace and `end-of-line'."
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
; modus-themes setup and enable
|
; modus-themes setup and enable
|
||||||
(use-package modus-themes
|
(require-theme 'modus-themes)
|
||||||
:ensure
|
|
||||||
:init
|
|
||||||
(setq modus-themes-region '(no-extend)
|
(setq modus-themes-region '(no-extend)
|
||||||
modus-themes-fringes 'subtle
|
modus-themes-fringes 'subtle
|
||||||
modus-themes-scale-headings t
|
modus-themes-scale-headings t
|
||||||
)
|
)
|
||||||
|
(load-theme 'modus-vivendi :no-confirm)
|
||||||
(modus-themes-load-themes)
|
|
||||||
:config
|
|
||||||
(modus-themes-load-vivendi)
|
|
||||||
)
|
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
; focus on text (turn on as desired/needed ; off by default
|
; 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
|
; helm
|
||||||
(setq completion-styles '(flex))
|
(setq completion-styles '(flex))
|
||||||
|
|
||||||
(require 'helm-config)
|
|
||||||
(require 'helm-color)
|
(require 'helm-color)
|
||||||
(require 'helm-ls-git)
|
(require 'helm-ls-git)
|
||||||
|
|
||||||
|
|
18
org/init.el
18
org/init.el
|
@ -63,13 +63,14 @@
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
; additional packages
|
; additional packages
|
||||||
(add-to-list 'package-selected-packages
|
(add-to-list 'package-selected-packages
|
||||||
'(ox-hugo org-super-agenda)
|
'(ox-hugo org-super-agenda org-alert)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
; Load misc extensions
|
; Load misc extensions
|
||||||
(require 'org)
|
(require 'org)
|
||||||
|
(use-package org-alert)
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
; Update/add auto file handling
|
; Update/add auto file handling
|
||||||
|
@ -199,3 +200,18 @@
|
||||||
|
|
||||||
(define-key org-super-agenda-header-map (kbd "<tab>") #'origami-toggle-node)
|
(define-key org-super-agenda-header-map (kbd "<tab>") #'origami-toggle-node)
|
||||||
(define-key org-agenda-mode-map (kbd "<tab>") #'origami-toggle-node)
|
(define-key org-agenda-mode-map (kbd "<tab>") #'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)))
|
||||||
|
|
Reference in a new issue