aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEllison Leão <ellisonleao@gmail.com>2020-12-02 17:44:20 -0300
committerEllison Leão <ellisonleao@gmail.com>2020-12-02 17:44:20 -0300
commite22f44e536a5869d7b45d89277d5b7db8756b224 (patch)
tree7e595a8814ceabf64f15d9d2423ba57654d279cb
parent7761eae0f7472b7bae37faf47aa6a350f2658cdd (diff)
downloadgruvbox-e22f44e536a5869d7b45d89277d5b7db8756b224.tar.gz
gruvbox-e22f44e536a5869d7b45d89277d5b7db8756b224.tar.xz
update README
-rw-r--r--README.md13
1 files changed, 9 insertions, 4 deletions
diff --git a/README.md b/README.md
index b3228ce..8410ed5 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,8 @@
# gruvbox.nvim
-A port of [gruvbox community](https://github.com/gruvbox-community/gruvbox) theme to lua.
+A port of [gruvbox community](https://github.com/gruvbox-community/gruvbox) theme to lua with [treesitter](https://github.com/nvim-treesitter/nvim-treesitter) support!
-Please note that this plugin is under active development right now, so the status for it is still
-alpha.
+Please note that this plugin is under active development right now, so the status for it is still alpha.
# Installing
@@ -14,6 +13,12 @@ Plug 'tjdevries/colorbuddy.nvim' # required
Plug 'npxbr/gruvbox.nvim'
```
+Using `packer`
+
+```
+use {"npxbr/gruvbox.nvim", requires = {"tjdevries/colorbuddy.vim"}}
+```
+
# Usage
Inside `init.vim`
@@ -21,7 +26,7 @@ Inside `init.vim`
```lua
lua require("colorbuddy").colorscheme("gruvbox")
-or
+-- or
lua require("colorbuddy").colorscheme("gruvbox", "light") -- for light mode
```