summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2024-10-13 08:27:27 -0400
committerKjetil Orbekk <kj@orbekk.com>2024-10-13 08:27:27 -0400
commit35eae8cf057341caee3edc20fc264cf99312e987 (patch)
tree2cd8f16951de01f026e2fbea018c281fb675af61
parent17a074808e40a7c6dae3110e89d20786927809c2 (diff)
Emacs changes
-rw-r--r--emacs/.config/emacs/emacs-custom.el2
-rw-r--r--emacs/.config/emacs/init.el2
-rw-r--r--emacs/.config/emacs/lisp/kj-init.el1
-rw-r--r--emacs/.config/emacs/lisp/kj-org.el2
4 files changed, 4 insertions, 3 deletions
diff --git a/emacs/.config/emacs/emacs-custom.el b/emacs/.config/emacs/emacs-custom.el
index 69d949d..7c74eba 100644
--- a/emacs/.config/emacs/emacs-custom.el
+++ b/emacs/.config/emacs/emacs-custom.el
@@ -6,7 +6,7 @@
'(custom-safe-themes
'("0340489fa0ccbfa05661bc5c8c19ee0ff95ab1d727e4cc28089b282d30df8fc8" "e3999eba4f25d912d7d61cbaaed1b551957e61da047279da89499d3bd1f1d007" "8d412c0ed46b865312d6df5c1dfd1821d349dd3cba00049cf88c4ad34403597e" "88267200889975d801f6c667128301af0bc183f3450c4b86138bfb23e8a78fb1" default))
'(package-selected-packages
- '(org-pomodoro eshell-syntax-highlighting esh-help pcmpl-args exercism tidal haskell-mode diff-hl dts-mode clojure-mode unobtrusive-magit-theme ledger-mode nix-mode rustic tempel puni magit gcmh smudge helpful pdf-tools pcre2el repeat-help selected ace-mc expand-region idle-highlight-mode diredfl anzu direnv ob-async mixed-pitch deadgrep wgrep coterm doom-themes with-editor zenburn-theme yasnippet-snippets yaml-mode which-key undo-tree tabbar session rust-mode puppet-mode pod-mode notmuch muttrc-mode mutt-alias lsp-mode initsplit ido-completing-read+ htmlize graphviz-dot-mode goto-chg gitignore-mode gitconfig-mode gitattributes-mode git-modes folding flycheck ess eproject editorconfig diminish csv-mode color-theme-modern browse-kill-ring boxquote bm bar-cursor apache-mode projectile embark-consult))
+ '(yasnippet org-pomodoro eshell-syntax-highlighting esh-help pcmpl-args exercism tidal haskell-mode diff-hl dts-mode clojure-mode unobtrusive-magit-theme ledger-mode nix-mode rustic tempel puni magit gcmh smudge helpful pdf-tools pcre2el repeat-help selected ace-mc expand-region idle-highlight-mode diredfl anzu direnv ob-async mixed-pitch deadgrep wgrep coterm doom-themes with-editor zenburn-theme yasnippet-snippets yaml-mode which-key undo-tree tabbar session rust-mode puppet-mode pod-mode notmuch muttrc-mode mutt-alias lsp-mode initsplit ido-completing-read+ htmlize graphviz-dot-mode goto-chg gitignore-mode gitconfig-mode gitattributes-mode git-modes folding flycheck ess eproject editorconfig diminish csv-mode color-theme-modern browse-kill-ring boxquote bm bar-cursor apache-mode projectile embark-consult))
'(safe-local-variable-values
'((eval outline-hide-sublevels 2)
(Package . CL-WHO)
diff --git a/emacs/.config/emacs/init.el b/emacs/.config/emacs/init.el
index ebec35b..79158d2 100644
--- a/emacs/.config/emacs/init.el
+++ b/emacs/.config/emacs/init.el
@@ -56,7 +56,7 @@
visible-bell t
auto-save-list-file-prefix (expand-file-name
"auto-save-list/.saves-" kj/cache-dir)
- alert-default-style '(libnotify)
+ alert-default-style 'libnotify
use-dialog-box nil
display-time-24hr-format t
diff --git a/emacs/.config/emacs/lisp/kj-init.el b/emacs/.config/emacs/lisp/kj-init.el
index a5b4f2a..f93e308 100644
--- a/emacs/.config/emacs/lisp/kj-init.el
+++ b/emacs/.config/emacs/lisp/kj-init.el
@@ -82,6 +82,7 @@
(use-package projectile
:ensure t
:defer 1
+ :custom (projectile-track-known-projects-automatically nil)
:init
(setq projectile-known-projects-file (expand-file-name "projectile-bookmarks.eld" kj/cache-dir))
(projectile-mode 1)
diff --git a/emacs/.config/emacs/lisp/kj-org.el b/emacs/.config/emacs/lisp/kj-org.el
index 228b464..bbaf0de 100644
--- a/emacs/.config/emacs/lisp/kj-org.el
+++ b/emacs/.config/emacs/lisp/kj-org.el
@@ -12,7 +12,7 @@
(setopt org-capture-templates
'(("s" "Sailing entry" plain (file+datetree "~/org/roam/sailing.org")
- "%^{LOCATION|Brooklyn}p\n%^{VESSEL|J80}p%^{SKIPPER}p\n%?")))
+ "%^{LOCATION|Brooklyn}p\n%^{VESSEL|J80}p%^{SKIPPER}p%?")))
;; Install the link type
(org-add-link-type "notmuch" 'org-notmuch-open)