From a034fdca2a52e31296684d7e10f131a0c3e8e606 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ellison=20Lea=CC=83o?= Date: Tue, 23 Feb 2021 01:15:03 -0300 Subject: initial changes on moving to lush.nvim --- README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 8410ed5..fee2cf7 100644 --- a/README.md +++ b/README.md @@ -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.. -- cgit v1.2.3 From 28c9ba74e7ad7794d0ff12c7f5c158a6775d9e4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ellison=20Lea=CC=83o?= Date: Wed, 24 Feb 2021 01:20:28 -0300 Subject: changed gruvbox lua module namespace --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index fee2cf7..35e3645 100644 --- a/README.md +++ b/README.md @@ -24,13 +24,13 @@ use {"npxbr/gruvbox.nvim", requires = {"rktjmp/lush.nvim"}} Inside `init.vim` ```vimscript -set background=dark +set background=dark " or light if you want light mode set colorscheme=gruvbox ``` ```lua -vim.o.background = "dark" -vim.o.colorscheme = "gruvbox" +vim.o.background = "dark" -- or "light" for light mode +vim.cmd([[ colorscheme gruvbox]]) ``` # Configuration -- cgit v1.2.3 From 655c8401c97d3fff618d6e5dfd2c75f98cd83997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ellison=20Lea=CC=83o?= Date: Wed, 24 Feb 2021 11:33:34 -0300 Subject: adding more plugin support - fix italic comments and strings options --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 35e3645..c75d257 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,11 @@ vim.cmd([[ colorscheme gruvbox]]) all `g:gruvbox_` configs are the same [as the original one](https://github.com/morhetz/gruvbox/wiki/Configuration) except for `g:gruvbox_guisp_fallback` -# Supported plugins +# Additional supported plugins - [vim-signify](https://github.com/mhinz/vim-signify) - [vim-startify](https://github.com/mhinz/vim-startify) +- [lspsaga.nvim](https://github.com/glepnir/lspsaga.nvim) +- [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim) More to be added.. -- cgit v1.2.3