From b769682e0f61c7015cfcc058374e1b54e139907f Mon Sep 17 00:00:00 2001 From: Paul-Sebastian Manole Date: Thu, 19 Dec 2024 13:38:23 +0200 Subject: [PATCH 1/3] feat: update github-nvim-theme README.md --- .../colorscheme/github-nvim-theme/README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/lua/astrocommunity/colorscheme/github-nvim-theme/README.md b/lua/astrocommunity/colorscheme/github-nvim-theme/README.md index aac6f2816..92445c719 100644 --- a/lua/astrocommunity/colorscheme/github-nvim-theme/README.md +++ b/lua/astrocommunity/colorscheme/github-nvim-theme/README.md @@ -6,12 +6,22 @@ Github's Neovim themes ## Usage -In your `user/init.lua` file, put: +In your `plugins/astroui.lua` file, put: ```lua return { - ... - colorscheme = "github_dark", + "AstroNvim/astroui", + opts = { + colorscheme = "github_dark_default", + -- colorscheme = "github_dark_dimmed", + -- colorscheme = "github_dark_colorblind", + -- colorscheme = "github_dark_high_contrast", + -- colorscheme = "github_dark_tritanopia", + -- colorscheme = "github_light_default", + -- colorscheme = "github_light_colorblind", + -- colorscheme = "github_light_high_contrast", + -- colorscheme = "github_light_tritanopia", + } } ``` From dc41bf5eaac9abd2cd0e54d68075a96e6684acbf Mon Sep 17 00:00:00 2001 From: Paul-Sebastian Manole Date: Thu, 19 Dec 2024 13:42:35 +0200 Subject: [PATCH 2/3] Forgot the original themes without variant names --- lua/astrocommunity/colorscheme/github-nvim-theme/README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/astrocommunity/colorscheme/github-nvim-theme/README.md b/lua/astrocommunity/colorscheme/github-nvim-theme/README.md index 92445c719..9dc8782b3 100644 --- a/lua/astrocommunity/colorscheme/github-nvim-theme/README.md +++ b/lua/astrocommunity/colorscheme/github-nvim-theme/README.md @@ -12,11 +12,14 @@ In your `plugins/astroui.lua` file, put: return { "AstroNvim/astroui", opts = { - colorscheme = "github_dark_default", + colorscheme = "github_dark", + -- colorscheme = "github_dark_default", -- colorscheme = "github_dark_dimmed", -- colorscheme = "github_dark_colorblind", -- colorscheme = "github_dark_high_contrast", -- colorscheme = "github_dark_tritanopia", + + -- colorscheme = "github_light", -- colorscheme = "github_light_default", -- colorscheme = "github_light_colorblind", -- colorscheme = "github_light_high_contrast", From ce45aa2efe28c64b413b17f92a0f68d0d8401ed6 Mon Sep 17 00:00:00 2001 From: Uzair Aftab <48220549+Uzaaft@users.noreply.github.com> Date: Fri, 20 Dec 2024 15:49:05 +0100 Subject: [PATCH 3/3] Update README.md --- .../colorscheme/github-nvim-theme/README.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lua/astrocommunity/colorscheme/github-nvim-theme/README.md b/lua/astrocommunity/colorscheme/github-nvim-theme/README.md index 9dc8782b3..d9a1111b3 100644 --- a/lua/astrocommunity/colorscheme/github-nvim-theme/README.md +++ b/lua/astrocommunity/colorscheme/github-nvim-theme/README.md @@ -13,17 +13,6 @@ return { "AstroNvim/astroui", opts = { colorscheme = "github_dark", - -- colorscheme = "github_dark_default", - -- colorscheme = "github_dark_dimmed", - -- colorscheme = "github_dark_colorblind", - -- colorscheme = "github_dark_high_contrast", - -- colorscheme = "github_dark_tritanopia", - - -- colorscheme = "github_light", - -- colorscheme = "github_light_default", - -- colorscheme = "github_light_colorblind", - -- colorscheme = "github_light_high_contrast", - -- colorscheme = "github_light_tritanopia", } } ```