update everything to current config
This commit is contained in:
@ -21,8 +21,7 @@
|
||||
;; See 'C-h v doom-font' for documentation and more examples of what they
|
||||
;; accept. For example:
|
||||
;;
|
||||
;;(setq doom-font (font-spec :family "Fira Code" :size 12 :weight 'semi-light)
|
||||
;; doom-variable-pitch-font (font-spec :family "Fira Sans" :size 13))
|
||||
(setq doom-variable-pitch-font (font-spec :family "Libertinus Serif" :size 13))
|
||||
;;
|
||||
;; If you or Emacs can't find your font, use 'M-x describe-font' to look them
|
||||
;; up, `M-x eval-region' to execute elisp code, and 'M-x doom/reload-font' to
|
||||
@ -32,7 +31,12 @@
|
||||
;; There are two ways to load a theme. Both assume the theme is installed and
|
||||
;; available. You can either set `doom-theme' or manually load a theme with the
|
||||
;; `load-theme' function. This is the default:
|
||||
(setq doom-theme 'doom-one)
|
||||
(setq doom-theme 'doom-tomorrow-night)
|
||||
;(setq doom-theme 'doom-one)
|
||||
;(setq doom-theme 'doom-wilmersdorf)
|
||||
|
||||
;(setq doom-theme 'doom-plain)
|
||||
;(setq doom-theme 'doom-flatwhite)
|
||||
|
||||
;; This determines the style of line numbers in effect. If set to `nil', line
|
||||
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
||||
@ -76,9 +80,9 @@
|
||||
;; they are implemented.
|
||||
|
||||
;;; agenda files
|
||||
;;(setq org-agenda-files '("~/calendar/calendar.org"
|
||||
;; "~/notebook/agenda/"
|
||||
;; "~/notebook/refile.org"))
|
||||
(setq org-agenda-files '("~/housekeeping/calendar.org"
|
||||
"~/notebook/ag/"
|
||||
"~/notebook/refile.org"))
|
||||
|
||||
|
||||
(after! org
|
||||
@ -118,13 +122,14 @@
|
||||
; (setq org-wild-notifier-keyword-whitelist nil))
|
||||
; (setq org-wild-notifier-keyword-blacklist '("DONE"))
|
||||
|
||||
|
||||
(use-package! org-wild-notifier
|
||||
:defer t
|
||||
:init
|
||||
(add-hook 'doom-post-init-hook (org-wild-notifier-mode))
|
||||
:config
|
||||
(setq alert-default-style 'libnotify)
|
||||
(setq org-wild-notifier-alert-time '(10 5))
|
||||
(setq org-wild-notifier-alert-time '(10 0))
|
||||
(setq org-wild-notifier-keyword-whitelist nil))
|
||||
(setq org-wild-notifier-keyword-blacklist '("DONE"))
|
||||
)
|
||||
@ -159,3 +164,9 @@
|
||||
(alert "test")
|
||||
)
|
||||
;;; end
|
||||
|
||||
(defun agenda/hide-daily-schedule-1 (&optional arg)
|
||||
(interactive "P")
|
||||
(let ((org-agenda-tag-filter-preset '("-habits")))
|
||||
(org-agenda arg "a")))
|
||||
(bind-key "<f5>" 'agenda/hide-daily-schedule-1)
|
||||
|
@ -50,7 +50,7 @@
|
||||
vi-tilde-fringe ; fringe tildes to mark beyond EOB
|
||||
;;window-select ; visually switch windows
|
||||
workspaces ; tab emulation, persistence & separate workspaces
|
||||
;;zen ; distraction-free coding or writing
|
||||
zen ; distraction-free coding or writing
|
||||
|
||||
:editor
|
||||
(evil +everywhere); come to the dark side, we have cookies
|
||||
@ -74,15 +74,15 @@
|
||||
vc ; version-control and Emacs, sitting in a tree
|
||||
|
||||
:term
|
||||
;;eshell ; the elisp shell that works everywhere
|
||||
eshell ; the elisp shell that works everywhere
|
||||
;;shell ; simple shell REPL for Emacs
|
||||
;;term ; basic terminal emulator for Emacs
|
||||
;;vterm ; the best terminal emulation in Emacs
|
||||
vterm ; the best terminal emulation in Emacs
|
||||
|
||||
:checkers
|
||||
syntax ; tasing you for every semicolon you forget
|
||||
;;(spell +flyspell) ; tasing you for misspelling mispelling
|
||||
;;grammar ; tasing grammar mistake every you make
|
||||
(spell +flyspell) ; tasing you for misspelling mispelling
|
||||
grammar ; tasing grammar mistake every you make
|
||||
|
||||
:tools
|
||||
;;ansible
|
||||
@ -101,7 +101,7 @@
|
||||
;;pass ; password manager for nerds
|
||||
;;pdf ; pdf enhancements
|
||||
;;prodigy ; FIXME managing external services & code builders
|
||||
;;rgb ; creating color strings
|
||||
rgb ; creating color strings
|
||||
;;taskrunner ; taskrunner for all your projects
|
||||
;;terraform ; infrastructure as code
|
||||
;;tmux ; an API for interacting with tmux
|
||||
|
Reference in New Issue
Block a user