aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSidhanth Rathod <siduck@tutanota.com>2022-08-07 07:59:20 +0530
committerGitHub <noreply@github.com>2022-08-07 07:59:20 +0530
commit8fe6ec269c6bcd19a7c2d69cb0bdcf8bb86a85fe (patch)
treef4abd07a7f319fe6fa8450023fd4f8734b8d9658 /README.md
parentMerge pull request #5 from sitiom/patch-1 (diff)
parentFix installation link (diff)
Merge pull request #7 from sitiom/patch-1
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?