-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Re-implemented
*_default
colorschemes
related to #298
- Loading branch information
Showing
22 changed files
with
879 additions
and
430 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
lua require('github-theme.util.airline')('github_dark_high_contrast') | ||
lua require('github-theme.util.airline')('github_dark_default') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
lua require('github-theme.util.airline')('github_light_default') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,9 @@ | ||
lua << EOF | ||
|
||
local dep = require('github-theme.lib.deprecation') | ||
dep.write( | ||
' Colorscheme ', | ||
{ 'github_dark_default', 'WarningMsg' }, | ||
' has been deprecated.', | ||
' Use ', | ||
{ 'github_dark_high_contrast', 'WarningMsg' }, | ||
' Instead. Refer to ', | ||
{ ':h github-theme.changelog-23042023', 'WarningMsg' }, | ||
' for more info.' | ||
) | ||
|
||
require('github-theme.config').set_theme('github_dark_high_contrast') | ||
require('github-theme').load() | ||
if vim.g.github_theme_debug then | ||
require("github-theme.util.reload")() | ||
end | ||
require("github-theme.config").set_theme('github_dark_default') | ||
require("github-theme").load() | ||
|
||
EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,9 @@ | ||
lua << EOF | ||
|
||
local dep = require('github-theme.lib.deprecation') | ||
dep.write( | ||
' Colorscheme ', | ||
{ 'github_light_default', 'WarningMsg' }, | ||
' has been deprecated.', | ||
' Use ', | ||
{ 'github_light_high_contrast', 'WarningMsg' }, | ||
' Instead. Refer to ', | ||
{ ':h github-theme.changelog-23042023', 'WarningMsg' }, | ||
' for more info.' | ||
) | ||
|
||
require('github-theme.config').set_theme('github_light_high_contrast') | ||
require('github-theme').load() | ||
if vim.g.github_theme_debug then | ||
require("github-theme.util.reload")() | ||
end | ||
require("github-theme.config").set_theme('github_light_default') | ||
require("github-theme").load() | ||
|
||
EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.