diff options
| author | Ellison Leão <ellisonleao@gmail.com> | 2023-09-29 18:27:57 -0300 |
|---|---|---|
| committer | Ellison Leão <ellisonleao@gmail.com> | 2023-09-29 18:27:57 -0300 |
| commit | e7b755d869296c0e100add9c940fb3024a41aa8a (patch) | |
| tree | 3517d71cea1a13c28a82729c311466e98219858b /README.md | |
| parent | 65f2b9e3b554c4579129e393d76044068ab34eed (diff) | |
| download | gruvbox-e7b755d869296c0e100add9c940fb3024a41aa8a.tar.gz gruvbox-e7b755d869296c0e100add9c940fb3024a41aa8a.tar.xz | |
BREAKING CHANGE: gruvbox is now a single module
palette: Can now be accessed in the main module through `require('gruvbox').palette`
get_base_colors: now a internal function called get_colors. If you want
to get the colors, just get the palette directly
groups: now moved to main module
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -18,16 +18,16 @@ Neovim 0.8.0+ # Installing -Using `packer` +## Using `packer` ```lua use { "ellisonleao/gruvbox.nvim" } ``` -Using `lazy.nvim` +## Using `lazy.nvim` ```lua -{ "ellisonleao/gruvbox.nvim", priority = 1000 } +{ "ellisonleao/gruvbox.nvim", priority = 1000 , setup = true, opts = ...} ``` # Basic Usage @@ -51,7 +51,6 @@ vim.cmd([[colorscheme gruvbox]]) Additional settings for gruvbox are: ```lua --- setup must be called before loading the colorscheme -- Default options: require("gruvbox").setup({ terminal_colors = true, -- add neovim terminal colors @@ -80,6 +79,8 @@ require("gruvbox").setup({ vim.cmd("colorscheme gruvbox") ``` +**VERY IMPORTANT**: Make sure to call setup() **BEFORE** calling the colorscheme command, to use your custom configs + ## Overriding ### Palette @@ -95,8 +96,6 @@ require("gruvbox").setup({ vim.cmd("colorscheme gruvbox") ``` -More colors in the [palette.lua](lua/gruvbox/palette.lua) file - ### Highlight groups If you don't enjoy the current color for a specific highlight group, now you can just override it in the setup. For |
