Skip to content

Commit 18073c8

Browse files
committed
chore: terminal themes removed
This change will not affect your neovim theme at all. All terminal themes and related issues are moved to follow repo: https://github.com/projekt0n/github-theme-contrib I also removed terminal theme generation related lua modules and make commands.
1 parent b89b488 commit 18073c8

File tree

72 files changed

+61
-4368
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+61
-4368
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
doc/tags

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
### Changes
11+
12+
- Terminal Themes moved to
13+
[github-theme-contrib](https://github.com/projekt0n/github-theme-contrib)
14+
- Terminal themes related code removed
15+
1016
### Added
1117

1218
- feat: plugin support [sindrets/diffview.nvim](https://github.com/sindrets/diffview.nvim) fixed #182
@@ -15,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1521
- Added `NvimTreeOpenedeFile` highlight
1622
- feat: plugin support [echasnovski/mini.nvim](https://github.com/echasnovski/mini.nvim)
1723
- feat: plugin support [romgrk/barbar.nvim](https://github.com/romgrk/barbar.nvim)
24+
- docs: Breaking Change logs with `:h github-theme-changelog`
1825

1926
### Fixes
2027

Makefile

-61
Original file line numberDiff line numberDiff line change
@@ -2,66 +2,5 @@
22

33
src = lua/github-theme
44

5-
terminal: $(src)/terminal
6-
lua $(src)/terminal/init.lua
7-
85
fmt:
96
stylua --config-path stylua.toml --glob 'lua/**/*.lua' -- lua
10-
11-
# reload kitty theme
12-
# https://github.com/ful1e5/dotfiles
13-
kitty_theme = ~/.dotfiles/kitty/.config/kitty/themes/github.conf
14-
exts = ./terminal
15-
16-
kitty_pre:
17-
@rm -rf $(kitty_theme)
18-
@touch $(kitty_theme)
19-
20-
kitty_dark: kitty_pre
21-
@cat $(exts)/kitty/github_dark.conf > $(kitty_theme)
22-
23-
kitty_dark_default: kitty_pre
24-
@cat $(exts)/kitty/github_dark_default.conf > $(kitty_theme)
25-
26-
kitty_dark_colorblind: kitty_pre
27-
@cat $(exts)/kitty/github_dark_colorblind.conf > $(kitty_theme)
28-
29-
kitty_dimmed: kitty_pre
30-
@cat $(exts)/kitty/github_dimmed.conf > $(kitty_theme)
31-
32-
kitty_light: kitty_pre
33-
@cat $(exts)/kitty/github_light.conf > $(kitty_theme)
34-
35-
kitty_light_default: kitty_pre
36-
@cat $(exts)/kitty/github_light_default.conf > $(kitty_theme)
37-
38-
kitty_light_colorblind: kitty_pre
39-
@cat $(exts)/kitty/github_light_colorblind.conf > $(kitty_theme)
40-
41-
# reload tmux theme
42-
tmux_theme = ~/.dotfiles/tmux/.github-theme.conf
43-
44-
tmux_pre:
45-
@rm -rf $(tmux_theme)
46-
@touch $(tmux_theme)
47-
48-
tmux_dark: tmux_pre
49-
@cat $(exts)/tmux/github_dark.conf > $(tmux_theme)
50-
51-
tmux_dimmed: tmux_pre
52-
@cat $(exts).conf/github_dimmed.conf > $.conf_theme)
53-
54-
tmux_dark_default: tmux_pre
55-
@cat $(exts).conf/github_dark_default.conf > $.conf_theme)
56-
57-
tmux_dark_colorblind: tmux_pre
58-
@cat $(exts).conf/github_dark_colorblind.conf > $.conf_theme)
59-
60-
tmux_light: tmux_pre
61-
@cat $(exts).conf/github_light.conf > $.conf_theme)
62-
63-
tmux_light_default: tmux_pre
64-
@cat $(exts).conf/github_light_default.conf > $.conf_theme)
65-
66-
tmux_light_colorblind: tmux_pre
67-
@cat $(exts).conf/github_light_colorblind.conf > $.conf_theme)

README.md

+14-30
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
## Notices
44

5-
- **2021-12-13** `hide_inactive_statusline` option is deprecated for lualine.
6-
That means it does not force the underline style to `StatusLineNC` highlight. #148
5+
Subscribe to this [discussion](https://github.com/projekt0n/github-nvim-theme/discussions/198)
6+
or `:h github-theme-changelog` to receive updates on breaking changes and deprecations.
77

8-
## Changelog
9-
10-
See [CHANGELOG.md](CHANGELOG.md)
8+
- **2022-08-03**: Terminal and other themes have been moved to
9+
**[github-theme-contrib](https://github.com/projekt0n/github-theme-contrib)**
10+
git repository and related code have been removed from this repository.
1111

1212
## Requirements
1313

@@ -145,14 +145,6 @@ require("github-theme").setup({
145145
- Vim terminal colors
146146
- Darker background for sidebar-like windows
147147
- Most elegant lualine theme
148-
- Color configs for [Alacritty](https://github.com/alacritty/alacritty),
149-
[Foot](https://codeberg.org/dnkl/foot),
150-
[Konsole](https://konsole.kde.org/),
151-
[Windows Terminal](https://github.com/microsoft/terminal),
152-
[Xresources](https://wiki.archlinux.org/title/x_resources),
153-
[iTerm2](https://iterm2.com/),
154-
[kitty](https://sw.kovidgoyal.net/kitty/conf.html?highlight=include), and
155-
[tmux](https://github.com/tmux/tmux/wiki)
156148
- Plugin Support
157149
[Builtin lsp diagnostics](https://neovim.io/doc/user/lsp.html),
158150
[ale](https://github.com/dense-analysis/ale),
@@ -185,20 +177,8 @@ Installation docs and screenshots at [LUALINE.md](./LUALINE.md).
185177

186178
## Terminal Themes
187179

188-
> To generate the configs `make terminal` or `:luafile lua/github-theme/terminal/init.lua`
189-
190-
Extra color configs for **Alacritty**, **Foot**, **Konsole**, **Windows Terminal**, **Xresources**, **iTerm**,
191-
**kitty**, and **tmux** can be found in [terminal](terminal/) directory. To use them, refer to their respective
192-
documentation.
193-
194-
- Alacritty - [terminal/alacritty](./terminal/alacritty)
195-
- Foot - [terminal/foot](./terminal/foot)
196-
- Konsole - [terminal/konsole](./terminal/konsole)
197-
- Windows Terminal - [terminal/windows_terminal](./terminal/windows_terminal)
198-
- Xresources - [terminal/xresources](./terminal/xresources)
199-
- iTerm - [terminal/iterm](./terminal/iterm)
200-
- kitty - [terminal/kitty](./terminal/kitty)
201-
- tmux - [terminal/tmux](./terminal/tmux)
180+
Moved to **[projekt0n/github-theme-contrib](https://github.com/projekt0n/github-theme-contrib)**
181+
git repository
202182

203183
### Making `undercurls` work properly in **Tmux**
204184

@@ -418,10 +398,14 @@ require("github-theme").setup({
418398

419399
![github_telescope](https://imgur.com/XX7tixL.png)
420400

401+
## Changelog
402+
421403
## Contributing
422404

423-
See [CONTRIBUTING.md](CONTRIBUTING.md)
405+
See [CONTRIBUTING.md](./CONTRIBUTING.md)
424406

425-
## License
407+
## Copying
426408

427-
This project licensed under `MIT` License.
409+
This project is released under the terms of the MIT license.
410+
See [LICENCE](./LICENSE) for more information or see
411+
[opensource.org](https://opensource.org/licenses/MIT)

doc/gt_changelog.txt

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
=====================================================================================
2+
*github-theme.changelog*
3+
4+
# Changelog
5+
6+
*github-theme.changelog-03082022*
7+
8+
Date: August 03, 2022
9+
10+
Terminal themes moved to projekt0n/github-theme-contrib repo and all related
11+
code have been removed from this repository.
12+
13+
URL: https://github.com/projekt0n/github-theme-contrib
14+
15+
16+
17+
*github-theme.changelog-13122021*
18+
19+
Date: December 13, 2021
20+
PR: https://github.com/projekt0n/github-nvim-theme/pull/148
21+
22+
This small change is made for differentiate the inactive Statusline and
23+
tabline from the background.
24+
25+
A list of changes that have been made:
26+
27+
- Minimal look deprecated for |lualine|.
28+
This deprecation is related to `hide_inactive_statusline` option. This
29+
means the theme will not force the |underline| style to inactive lualine.
30+
- Native lualine theme support terminal highlights |terminal-config|
31+
- Inactive tabline highlights got enhanced.
32+
33+
34+
35+
vim:tw=78:ts=8:ft=help:norl:

lua/github-theme/terminal/alacritty.lua

-55
This file was deleted.

lua/github-theme/terminal/foot.lua

-41
This file was deleted.

lua/github-theme/terminal/init.lua

-27
This file was deleted.

0 commit comments

Comments
 (0)