summaryrefslogtreecommitdiff
path: root/emacs-init.org
diff options
context:
space:
mode:
authorfpi2020-09-18 15:51:14 +0200
committerfpi2020-09-18 15:57:18 +0200
commit8c8987aa86993c100b20414a46e3dfcf7dc57cd0 (patch)
treecd90fa50c6d416d715c32c8a65a5fe98e2505305 /emacs-init.org
parentSmaller contact info in bbdb pop up (diff)
Add whole-line-or-region & redtick packages
Diffstat (limited to 'emacs-init.org')
-rw-r--r--emacs-init.org14
1 files changed, 14 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org
index deef3bd..40bb8ff 100644
--- a/emacs-init.org
+++ b/emacs-init.org
@@ -5342,6 +5342,20 @@ Saves to a temp file and puts the filename in the kill ring."
(kill-new filename)
(message filename)))
#+end_src
+*** Whole-line-or-region
+#+begin_src emacs-lisp
+(use-package whole-line-or-region
+ :straight t
+ :config
+ (whole-line-or-region-global-mode 1)
+ (delight 'whole-line-or-region-local-mode nil t))
+#+end_src
+*** Pomodoro / Redtick
+#+begin_src emacs-lisp
+(use-package redtick
+ :straight t
+ :config (redtick-mode 1))
+#+end_src
* Language settings
End sentences with single spaces.
#+begin_src emacs-lisp