diff options
author | Ryan Kavanagh <rak@rak.ac> | 2023-06-07 10:17:51 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2023-06-07 10:18:00 -0400 |
commit | 514be36ed47389ab60a0868b0f5c8675a7031c4e (patch) | |
tree | a20081c15ff170bb2938583547f7ff66dfcd791f | |
parent | Sort added-2023 playlist by add date (diff) |
.emacs
Diffstat (limited to '')
-rw-r--r-- | dot_emacs.tmpl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/dot_emacs.tmpl b/dot_emacs.tmpl index 0c8076f..eabb066 100644 --- a/dot_emacs.tmpl +++ b/dot_emacs.tmpl @@ -413,6 +413,8 @@ Extended Format date in the date field and return it as a string obeing (use-package ivy :ensure t :diminish + :bind + (("C-c C-r" . ivy-resume)) :custom (ivy-use-virtual-buffers t) (ivy-count-format "(%d/%d) ") @@ -999,6 +1001,11 @@ If not, issue a warning." :ensure t :requires spaceline-config) +(use-package swiper + :ensure t + :bind + (("C-s" . swiper))) + (use-package tex :ensure auctex :custom |