diff options
| author | bh <qn+git@excalibur.computer> | 2026-05-25 21:22:30 +0800 |
|---|---|---|
| committer | bh <qn+git@excalibur.computer> | 2026-05-25 21:22:30 +0800 |
| commit | c3d50aec091c1339ff735f6b9e0eb0bb2ca1198e (patch) | |
| tree | bb940b984cb4a99c4c5011ceaa2cc564626f987c | |
| parent | 9b947bd0e899f929b9c1bc30c25104107e551bbd (diff) | |
Change location of caldav secret and add line numbers to org-mode
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | config/org.el | 2 | ||||
| -rw-r--r-- | init.el | 3 |
3 files changed, 2 insertions, 6 deletions
@@ -49,9 +49,6 @@ eshell # TAGS TAGS -# CalDAV secrets -caldav.el - # Other .cache/ .local/ diff --git a/config/org.el b/config/org.el index cdb3156..cebc916 100644 --- a/config/org.el +++ b/config/org.el @@ -69,7 +69,7 @@ ;; ===================================== ;; Load CalDAV credentials from gitignored file -(let ((caldav-secrets (expand-file-name "caldav.el" user-emacs-directory))) +(let ((caldav-secrets (expand-file-name "~/Notes/caldav.el"))) (when (file-exists-p caldav-secrets) (load caldav-secrets))) @@ -59,8 +59,7 @@ (setq display-line-numbers-type 'relative) ;; Relative line numbers for Evil mode ;; Disable line numbers in special buffers -(dolist (mode '(org-mode-hook - term-mode-hook +(dolist (mode '(term-mode-hook shell-mode-hook eshell-mode-hook help-mode-hook |