diff options
| author | Ellison Leão <ellisonleao@gmail.com> | 2021-02-23 01:15:03 -0300 |
|---|---|---|
| committer | Ellison Leão <ellisonleao@gmail.com> | 2021-02-23 01:15:03 -0300 |
| commit | a034fdca2a52e31296684d7e10f131a0c3e8e606 (patch) | |
| tree | 4d558fb2ec954c3d9373809f042209be4852035d /README.md | |
| parent | d755ce15d44c0c36cc0e166be765d81c42faac9e (diff) | |
| download | gruvbox-a034fdca2a52e31296684d7e10f131a0c3e8e606.tar.gz gruvbox-a034fdca2a52e31296684d7e10f131a0c3e8e606.tar.xz | |
initial changes on moving to lush.nvim
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -9,26 +9,28 @@ Please note that this plugin is under active development right now, so the statu Using `vim-plug` ``` -Plug 'tjdevries/colorbuddy.nvim' # required +Plug 'rktjmp/lush.nvim' # required Plug 'npxbr/gruvbox.nvim' ``` Using `packer` ``` -use {"npxbr/gruvbox.nvim", requires = {"tjdevries/colorbuddy.vim"}} +use {"npxbr/gruvbox.nvim", requires = {"rktjmp/lush.nvim"}} ``` # Usage Inside `init.vim` -```lua -lua require("colorbuddy").colorscheme("gruvbox") - --- or +```vimscript +set background=dark +set colorscheme=gruvbox +``` -lua require("colorbuddy").colorscheme("gruvbox", "light") -- for light mode +```lua +vim.o.background = "dark" +vim.o.colorscheme = "gruvbox" ``` # Configuration @@ -39,6 +41,5 @@ all `g:gruvbox_` configs are the same [as the original one](https://github.com/m - [vim-signify](https://github.com/mhinz/vim-signify) - [vim-startify](https://github.com/mhinz/vim-startify) -- [galaxyline.nvim](https://github.com/glepnir/galaxyline.nvim) More to be added.. |
