diff options
Diffstat (limited to 'home/dots/.emacs')
-rw-r--r-- | home/dots/.emacs | 33 |
1 files changed, 19 insertions, 14 deletions
diff --git a/home/dots/.emacs b/home/dots/.emacs index 4f9a2b0..fd79d4e 100644 --- a/home/dots/.emacs +++ b/home/dots/.emacs @@ -209,6 +209,8 @@ (vc-make-backup-files nil)) (use-package tab-bar + :bind + (("C-<tab>" . nil)) :custom (tab-bar-auto-width nil) (tab-bar-close-button-show nil) @@ -341,14 +343,16 @@ (use-package direnv :ensure t + :custom + (direnv-always-show-summary nil) :config (direnv-mode)) (use-package minibuffer :defer t - :config - (setq completion-cycle-threshold 5 - completion-ignore-case t)) + :custom + (completion-cycle-threshold 5) + (completion-ignore-case t)) (use-package pass :defer t @@ -1001,49 +1005,49 @@ :custom (org-capture-templates '(("t" "Todo" - entry (file+headline "~/personal-db/notes/notes.org" "Todo") + entry (file+headline "~/personal-db/notes/agenda.org" "Todo") "* TODO %?\n%i\n%a\n " :empty-lines 1) ("w" "Work Todo" - entry (file+headline "~/personal-db/notes/notes.org" "Todo") + entry (file+headline "~/personal-db/notes/agenda.org" "Todo") "* TODO %? :piva:\n:PROPERTIES:\n:CATEGORY: PivÄ\n:END:\n%i\n%a\n " :empty-lines 1) ("b" "Book" - entry (file+olp "~/personal-db/notes/notes.org" "References" "Books") + entry (file+olp "~/personal-db/notes/lore.org" "References" "Books") "* UNREAD %?\n:PROPERTIES:\n:AUTHOR:\n:END:\n " :empty-lines 1) ("f" "Formula" - entry (file+headline "~/personal-db/notes/notes.org" "Formulas") + entry (file+headline "~/personal-db/notes/lore.org" "Formulas") "* %?\n%U" :empty-lines 1) ("f" "Film" - entry (file+olp "~/personal-db/notes/notes.org" "References" "Films") + entry (file+olp "~/personal-db/notes/lore.org" "References" "Films") "* %?\n:PROPERTIES:\n:DIRECTOR:\n:STATE: unwatched\n:END:\n " :empty-lines 1) ("g" "Log Coffee" - entry (file+headline "~/personal-db/notes/notes.org" "Log") + entry (file+headline "~/personal-db/notes/log.org" "Log") "* Brewed pour-over :coffee:cyprus:paramytha:\n:PROPERTIES:\n:WATER: 320g\n:COFFEE: 25g\n:TYPE: [[id:ad50bd15-85fe-4efb-84f8-a4cf3113bcf9][Zigzag]] | [[id:815450d3-d772-4207-9eb4-e1e185fd8356][La Pastora]] | [[id:9d136656-2965-4be9-87cf-4ecafcf62707][Alemayehu]] | [[id:73a92627-f076-4090-a78c-ef8204191611][Los Chorros]]\n:TEMP: 90\n:RATING:\n:PREHEAT: YES\n:TOTALBREWTIME:\n:CLICKS:\n:END:\n%T\n*** Observations " :empty-lines 0 :prepend t) ("r" "Reference" - entry (file+headline "~/personal-db/notes/notes.org" "References") + entry (file+headline "~/personal-db/notes/lore.org" "References") "* %?\n%i\n%a\n " :empty-lines 1) ("e" "Event" - entry (file+headline "~/personal-db/notes/notes.org" "Event") + entry (file+headline "~/personal-db/notes/agenda.org" "Event") "* %?\n%^T" :empty-lines 1) ("a" "Article" - entry (file+olp "~/personal-db/notes/notes.org" "References" "Articles") + entry (file+olp "~/personal-db/notes/lore.org" "References" "Articles") "* %?\n:PROPERTIES:\n:author:\n:END:\n " :empty-lines 1) ("l" "Log" - entry (file+headline "~/personal-db/notes/notes.org" "Log") + entry (file+headline "~/personal-db/notes/log.org" "Log") "** %? :cyprus:paramytha:\n%T" :prepend t :empty-lines 0) ("n" "Inbox" - entry (file+headline "~/personal-db/notes/notes.org" "Inbox") + entry (file+headline "~/personal-db/notes/inbox.org" "Inbox") "* %?\n%U\n" :empty-lines 1))) :bind @@ -1203,6 +1207,7 @@ ;; (message-send . marc/set-msmtp-account) (message-setup . flyspell-mode) (message-setup . mail-abbrevs-setup) + (message-setup . variable-pitch-mode) :custom (sendmail-program (executable-find "msmtp")) (send-mail-function 'smtpmail-send-it) |