From fedc33096d7a023c3039f77641b8e64bdb2a572f Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Sun, 18 Jun 2023 20:38:08 +0200 Subject: [PATCH] Update README.md --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8d45966..b0499de 100644 --- a/README.md +++ b/README.md @@ -38,13 +38,12 @@ M-x format-to-pascal-case-region M-x format-to-snake-case-region ``` -## Installation +## Install -1. Download `format-region.el` file. - -2. Add this to your `~/.emacs` file: +Add in your `init.el`. ```elisp -(add-to-list 'load-path "/path/to/format-region.el") -(require 'format-region) +(use-package format-region + :straight (:host github :repo "tanrax/format-region.el" :files ("format-region.el")) + :ensure t) ```