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 --- colors/gruvbox.vim | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'colors/gruvbox.vim') diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index 0ba5756..8bce9bd 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -1,2 +1,5 @@ -lua package.loaded["gruvbox"] = nil -lua require("gruvbox") +set background=dark +let g:colors_name="gruvbox" +" reloading colors +lua package.loaded["gruvbox.lush_template"] = nil +lua require("lush")(require("gruvbox.lush_template")) -- cgit v1.2.3 From 939a21c94bf1d1efbdf527ac9c0b312d606679cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ellison=20Lea=CC=83o?= Date: Tue, 23 Feb 2021 11:42:55 -0300 Subject: adding more highlight groups --- colors/gruvbox.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'colors/gruvbox.vim') diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index 8bce9bd..b052493 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -1,5 +1,5 @@ set background=dark let g:colors_name="gruvbox" " reloading colors -lua package.loaded["gruvbox.lush_template"] = nil -lua require("lush")(require("gruvbox.lush_template")) +lua package.loaded["gruvbox.theme"] = nil +lua require("lush")(require("gruvbox.theme")) -- 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 --- colors/gruvbox.vim | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'colors/gruvbox.vim') diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index b052493..6b3a644 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -1,5 +1,4 @@ -set background=dark -let g:colors_name="gruvbox" +" let g:colors_name="gruvbox" " reloading colors -lua package.loaded["gruvbox.theme"] = nil -lua require("lush")(require("gruvbox.theme")) +lua package.loaded["gruvbox"] = nil +lua require("lush")(require("gruvbox")) -- 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 --- colors/gruvbox.vim | 2 -- 1 file changed, 2 deletions(-) (limited to 'colors/gruvbox.vim') diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index 6b3a644..432b264 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -1,4 +1,2 @@ -" let g:colors_name="gruvbox" -" reloading colors lua package.loaded["gruvbox"] = nil lua require("lush")(require("gruvbox")) -- cgit v1.2.3