diff options
| author | fpi | 2020-09-18 15:51:14 +0200 | 
|---|---|---|
| committer | fpi | 2020-09-18 15:57:18 +0200 | 
| commit | 8c8987aa86993c100b20414a46e3dfcf7dc57cd0 (patch) | |
| tree | cd90fa50c6d416d715c32c8a65a5fe98e2505305 | |
| parent | Smaller contact info in bbdb pop up (diff) | |
Add whole-line-or-region & redtick packages
| -rw-r--r-- | emacs-init.org | 14 | 
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  | 
