diff options
author | jdlugosz963 <jdlugosz963@gmail.com> | 2024-03-13 23:00:46 +0100 |
---|---|---|
committer | jdlugosz963 <jdlugosz963@gmail.com> | 2024-03-13 23:00:46 +0100 |
commit | 58aa5ad1148391787a2652c65913e8788774d74e (patch) | |
tree | 3254ec27aabea0b256d6553fd298d7ff6cdd2eff /.emacs.d/jd/jd-apps.el | |
parent | 3a847f81783589a2266dbbebffcfec3a86264cdb (diff) | |
download | dotfiles-58aa5ad1148391787a2652c65913e8788774d74e.tar.gz dotfiles-58aa5ad1148391787a2652c65913e8788774d74e.zip |
Update emacs config.
Diffstat (limited to '.emacs.d/jd/jd-apps.el')
-rwxr-xr-x | .emacs.d/jd/jd-apps.el | 34 |
1 files changed, 25 insertions, 9 deletions
diff --git a/.emacs.d/jd/jd-apps.el b/.emacs.d/jd/jd-apps.el index 5064ff9..2163435 100755 --- a/.emacs.d/jd/jd-apps.el +++ b/.emacs.d/jd/jd-apps.el | |||
@@ -46,15 +46,15 @@ | |||
46 | ;; (evil-define-key 'normal dired-mode-map (kbd "q") 'kill-current-buffer) | 46 | ;; (evil-define-key 'normal dired-mode-map (kbd "q") 'kill-current-buffer) |
47 | ) | 47 | ) |
48 | 48 | ||
49 | ;; (jd/use-package emms "emacs-emms" | 49 | (jd/use-package emms "emacs-emms" |
50 | ;; :config | 50 | :config |
51 | ;; (require 'emms-setup) | 51 | (require 'emms-setup) |
52 | ;; (emms-all) | 52 | (emms-all) |
53 | ;; (emms-standard) | 53 | (emms-standard) |
54 | ;; (emms-default-players) | 54 | (emms-default-players) |
55 | ;; (emms-mode-line-disable) | 55 | (emms-mode-line-disable) |
56 | ;; (setq emms-browser-covers 'emms-browser-cache-thumbnail-async) | 56 | (setq emms-browser-covers 'emms-browser-cache-thumbnail-async) |
57 | ;; (emms-add-directory-tree "~/Documents/Music/")) | 57 | (emms-add-directory-tree "~/Documents/Music/")) |
58 | 58 | ||
59 | (jd/use-package pdf-tools "emacs-pdf-tools") | 59 | (jd/use-package pdf-tools "emacs-pdf-tools") |
60 | 60 | ||
@@ -82,6 +82,22 @@ | |||
82 | (setq mastodon-active-user "jdlugosz963" | 82 | (setq mastodon-active-user "jdlugosz963" |
83 | mastodon-instance-url "https://fosstodon.org/")) | 83 | mastodon-instance-url "https://fosstodon.org/")) |
84 | 84 | ||
85 | (jd/use-package password-store "emacs-password-store" | ||
86 | :bind | ||
87 | ("C-c P p" . password-store-copy) | ||
88 | ("C-c P i" . password-store-insert) | ||
89 | ("C-c P g" . password-store-generate)) | ||
90 | |||
91 | (jd/use-package bluetooth "emacs-bluetooth" | ||
92 | :bind | ||
93 | ("C-c B" . bluetooth-list-devices)) | ||
94 | |||
95 | (jd/use-package shell nil | ||
96 | :bind | ||
97 | ("C-c C-<return>" . shell)) | ||
98 | |||
99 | (jd/use-package nov-el "emacs-nov-el") | ||
100 | |||
85 | (provide 'jd-apps) | 101 | (provide 'jd-apps) |
86 | 102 | ||
87 | ;;; jd-apps.el ends here | 103 | ;;; jd-apps.el ends here |