aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorsitiom <sitiom@proton.me>2022-08-07 10:27:56 +0800
committerGitHub <noreply@github.com>2022-08-07 10:27:56 +0800
commit856c02bac3c47a1ad02114a344f2d356c340632a (patch)
treef4abd07a7f319fe6fa8450023fd4f8734b8d9658 /README.md
parentMerge pull request #5 from sitiom/patch-1 (diff)
Fix installation link
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 6fda6a2..536f25b 100644
--- a/README.md
+++ b/README.md
@@ -14,10 +14,10 @@ Requires Neovim >= 0.4.0 and `set termguicolors` (I'm looking into relaxing
these constraints). If you don't have true color for your terminal or are
unsure, [read this excellent guide](https://github.com/termstandard/colors).
-Use your plugin manager or clone directly into your `runtimepath`.
+Use your plugin manager or clone directly into your package.
-```vim
-Plug 'norcalli/nvim-colorizer.lua'
+```lua
+use 'NvChad/nvim-colorizer.lua'
```
As long as you have `malloc()` and `free()` on your system, this will work.
@@ -27,8 +27,8 @@ One line setup. This will create an `autocmd` for `FileType *` to highlight
every filetype.
**NOTE**: You should add this line after/below where your plugins are setup.
-```vim
-lua require'colorizer'.setup()
+```lua
+require'colorizer'.setup()
```
### Why another highlighter?