diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-10-27 09:55:25 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-10-27 09:55:25 +0100 |
commit | f0673b7cfebeadc5a2da27449ac10e324cdb643e (patch) | |
tree | bdef0a2440dc6ac026aab5a054522bfc07b8a12f /myinit.org | |
parent | c3fc96e18808e1e4d3381792f2b1fcbf45580406 (diff) |
org mode for 2022
Diffstat (limited to '')
-rw-r--r-- | myinit.org | 30 |
1 files changed, 17 insertions, 13 deletions
@@ -216,6 +216,11 @@ This now is all about the agenda dispatcher - a critical piece of my configurato ("NEXT" ("WAITING") ("CANCELLED") ("HOLD")) ("DONE" ("WAITING") ("CANCELLED") ("HOLD"))))) + ;; Get more priority options + (setq org-highest-priority ?A) + (setq org-default-priority ?C) + (setq org-lowest-priority ?E) + (setq org-priority-faces '((?A . (:foreground "#CC0000" :background "#FFE3E3")) (?B . (:foreground "#64992C" :background "#EBF4DD")) @@ -314,7 +319,7 @@ This now is all about the agenda dispatcher - a critical piece of my configurato (setq visible-bell t) - (set-face-attribute 'default nil :font "Jetbrains Mono" :height 140) + (set-face-attribute 'default nil :font "Liberation Mono" :height 100) ;;(set-face-attribute 'default nil :font "UbuntuMono Nerd Font Mono" :height 160) (load-theme 'tango-dark) ;;(load-theme 'gruvbox-dark-hard t) @@ -639,25 +644,24 @@ This now is all about the agenda dispatcher - a critical piece of my configurato (add-hook 'prog-mode-hook 'rainbow-delimiters-mode)) ;; EVIL - ;; (use-package evil - ;; :init - ;; :config - ;; (setq evil-respect-visual-line-mode t) - ;; (evil-mode 1)) + (use-package evil + :init + :config + (setq evil-respect-visual-line-mode t) + (setq evil-default-state 'emacs) + (evil-mode 1)) - ;; ;; which-key - for nice menu - ;; (use-package which-key - ;; :config - ;; (which-key-mode) - ;; ) + ; ;; which-key - for nice menu + ; (use-package which-key + ; :config + ; (which-key-mode) + ; ) ;; which-key (use-package which-key :config (which-key-mode)) - - ;; elfeed (use-package elfeed :config |