summaryrefslogtreecommitdiff
path: root/.emacs.d/modules
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-01-09 11:38:43 +0200
committerThanos Apollo <[email protected]>2024-01-09 11:39:04 +0200
commit79e03b5aab805083fc7d92f15bace86ff1e9223e (patch)
tree0bbb53bcc0fd9a6b07bd0120412c440c780edf99 /.emacs.d/modules
parentcf3150cd2ca8c8e2677bf5ffd4f72ac67936a1da (diff)
emacs:(org) use jinx
Diffstat (limited to '.emacs.d/modules')
-rw-r--r--.emacs.d/modules/thanos-org.el5
-rw-r--r--.emacs.d/modules/thanos-packages.el12
2 files changed, 14 insertions, 3 deletions
diff --git a/.emacs.d/modules/thanos-org.el b/.emacs.d/modules/thanos-org.el
index 3e7d9b7..ad29a52 100644
--- a/.emacs.d/modules/thanos-org.el
+++ b/.emacs.d/modules/thanos-org.el
@@ -240,5 +240,10 @@
(setf org-download-screenshot-method "scrot --select %s")
+;; Jinx
+(require 'jinx)
+(add-hook 'org-mode-hook #'jinx-mode)
+(define-key jinx-mode-map (kbd "M-'") #'jinx-correct)
+
(provide 'thanos-org)
;;; thanos-org.el ends here
diff --git a/.emacs.d/modules/thanos-packages.el b/.emacs.d/modules/thanos-packages.el
index 342843c..c27457a 100644
--- a/.emacs.d/modules/thanos-packages.el
+++ b/.emacs.d/modules/thanos-packages.el
@@ -32,7 +32,9 @@
(require 'package)
;; Install straight.el
+
(defvar bootstrap-version)
+
(let ((bootstrap-file
(expand-file-name
"straight/repos/straight.el/bootstrap.el"
@@ -59,14 +61,18 @@
visual-fill-column rainbow-delimiters eshell-git-prompt helpful password-store
json-mode ement magit corfu orderless consult pdf-tools markdown-mode eat doom-themes
org-auto-tangle sly eat nov eshell-syntax-highlighting emojify flycheck vterm doom-modeline
- telega transmission gptel nerd-icons-dired sudo-edit mu4e-alert magit-todos)
- "Packages to install.")
+ telega transmission gptel nerd-icons-dired sudo-edit mu4e-alert magit-todos jinx)
+ "List of packages to install.")
+
+(setf straight-recipe-overrides
+ '((transmission :type git :host nil :repo "[email protected]:/var/git/transmission")
+ (yeetube :type git :host nil :repo "[email protected]:/var/git/yeetube")))
(defvar thanos/custom-packages
'((yeetube :local-repo "~/Dev/emacs-lisp/yeetube")
(gnosis :local-repo "~/Dev/emacs-lisp/gnosis")
(copilot :host github :repo "zerolfx/copilot.el" :files ("dist" "*.el")))
- "Pacakges I'm working on locally.")
+ "Custom package recipes.")
;; Get packages via straight
(cl-loop for package in (append thanos/custom-packages thanos/packages)