Update README.md

This commit is contained in:
Andros Fenollosa 2023-06-18 20:38:08 +02:00 committed by GitHub
parent 1429d2c03b
commit fedc33096d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,13 +38,12 @@ M-x format-to-pascal-case-region
M-x format-to-snake-case-region M-x format-to-snake-case-region
``` ```
## Installation ## Install
1. Download `format-region.el` file. Add in your `init.el`.
2. Add this to your `~/.emacs` file:
```elisp ```elisp
(add-to-list 'load-path "/path/to/format-region.el") (use-package format-region
(require 'format-region) :straight (:host github :repo "tanrax/format-region.el" :files ("format-region.el"))
:ensure t)
``` ```