Skip to content

Commit eeac2e7

Browse files
committed
release: v0.0.5
1 parent addf54f commit eeac2e7

File tree

2 files changed

+19
-16
lines changed

2 files changed

+19
-16
lines changed

CHANGELOG.md

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

88
## [unreleased]
99

10+
## [v0.0.5] - 03 May 2022
11+
1012
### Added
1113

1214
- refactor: color types moved to `types/palette.lua`
1315
- chore: terminal colors
1416
- feat: use native autocmds on nvim >=0.7 ( fixed #168 )
1517
- chore: tmux theme's extension changed to `.conf` from `.tmux`
16-
- breaking-change: removed some colors from `colors.lua`
18+
- BREAKING-CHANGE: removed some colors from `colors.lua`
1719
- refactor: implement highlight override function in `util.load`
1820
- enhance: `overrides` function is now able to add custom highlight in `dev` mode.
1921
- docs: about developer mode
20-
- breaking-change: set lualine theme with `theme="auto"`
22+
- BREAKING-CHANGE: set lualine theme with `theme="auto"`
2123
- terminal-theme: Xresources theme added #166
2224
- chore: unlink 'Visual' highlight from plugin highlights
2325
- kitty: add cursor foreground color ( fixed #174 )
@@ -89,7 +91,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8991
- Github `light_default` theme added #15 #16
9092
- Make target added for reloading kitty theme with `kitty_dark_default` & `kitty_light_default`
9193
- Individual themes for `colorscheme` command #68
92-
- Breaking Change: use **snake_case** inside config instead of ~camelCase~
94+
- BREAKING-CHANGE: use **snake_case** inside config instead of ~camelCase~
9395
- `hide_inactive_statusline` default value is `true`
9496
- `dark_float` default value is `false`
9597
- feat: vim config support with "vim.g"
@@ -100,10 +102,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
100102
- set `vim.o.background` while loading individual colorscheme (folke/tokyonight.nvim#102)
101103
- enhance: assign config default value to `vim.g` variables
102104
- re-patch: #72
103-
- breaking change: `github` deprecated from `colorscheme` command
105+
- BREAKING-CHANGE: `github` deprecated from `colorscheme` command
104106
- `pmenu.select` color removed
105107
- pmenu select background color with dynamic blue color
106-
- breaking change: terminal colors are renamed
108+
- BREAKING-CHANGE: terminal colors are renamed
107109
- feat: set `vim.o.background` with config module (re-patch #60 #116)
108110
- enhance: support colorschemes with fzf `Colors` command
109111
- enhance: unlink `NvimTreeGitIgnored` from `Comment`
@@ -184,13 +186,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
184186
- use `bg_visiual` color as floating window border
185187
- use `bg` and `bg2` colors for `EndOfBuffer` `NoneText` fixed #66
186188

187-
## [v0.0.1] - 9 Jul 2021
189+
## [v0.0.1] - 09 Jul 2021
188190

189191
### Added
190192

191193
- Initial release 🎊
192194

193-
[unreleased]: https://github.com/projekt0n/github-nvim-theme/compare/v0.0.4...main
195+
[unreleased]: https://github.com/projekt0n/github-nvim-theme/compare/v0.0.5...main
196+
[v0.0.5]: https://github.com/projekt0n/github-nvim-theme/compare/v0.0.5...v0.0.4
194197
[v0.0.4]: https://github.com/projekt0n/github-nvim-theme/compare/v0.0.4...v0.0.3
195198
[v0.0.3]: https://github.com/projekt0n/github-nvim-theme/compare/v0.0.3...v0.0.2
196199
[v0.0.2]: https://github.com/projekt0n/github-nvim-theme/compare/v0.0.2...v0.0.1

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
- Minimal inactive statusline (only work with **Vim's Default StatusLine**)
1414
- Vim terminal colors
1515
- Darker background for sidebar-like windows
16-
- Color configs for [kitty](https://sw.kovidgoyal.net/kitty/conf.html?highlight=include), [iTerm2](https://iterm2.com/), [Konsole](https://konsole.kde.org/), [tmux](https://github.com/tmux/tmux/wiki), [Xresources](https://wiki.archlinux.org/title/x_resources), [Windows Terminal](https://github.com/microsoft/terminal) and [Alacritty](https://github.com/alacritty/alacritty)
16+
- Color configs for [Alacritty](https://github.com/alacritty/alacritty), [Konsole](https://konsole.kde.org/), [Windows Terminal](https://github.com/microsoft/terminal), [Xresources](https://wiki.archlinux.org/title/x_resources), [iTerm2](https://iterm2.com/), [kitty](https://sw.kovidgoyal.net/kitty/conf.html?highlight=include) and [tmux](https://github.com/tmux/tmux/wiki)
1717
- Most elegant [**lualine** theme](./LUALINE.md#screenshots)
1818

1919
## Requirements
@@ -122,15 +122,15 @@ Installation docs and screenshots at [LUALINE.md](./LUALINE.md).
122122

123123
> To generate the configs `make terminal` or `:luafile lua/github-theme/terminal/init.lua`
124124
125-
Extra color configs for **kitty**, **iTerm**, **Konsole**, **tmux**, **Xresources** and **Alacritty** can be found in [terminal](terminal/) directory. To use them, refer to their respective documentation.
125+
Extra color configs for **Alacritty**, **Konsole**, **Windows Terminal**, **Xresources**, **iTerm**, **kitty**, and **tmux** can be found in [terminal](terminal/) directory. To use them, refer to their respective documentation.
126126

127-
- Alacritty - [./terminal/alacritty](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/alacritty)
128-
- Konsole - [./terminal/konsole](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/konsole)
129-
- Windows Terminal - [./terminal/windows_terminal](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/windows_terminal)
130-
- Xresources - [./terminal/xresources](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/xresources)
131-
- iTerm - [./terminal/iterm](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/iterm)
132-
- kitty - [./terminal/kitty](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/kitty)
133-
- tmux - [./terminal/tmux](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/tmux)
127+
- Alacritty - [terminal/alacritty](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/alacritty)
128+
- Konsole - [terminal/konsole](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/konsole)
129+
- Windows Terminal - [terminal/windows_terminal](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/windows_terminal)
130+
- Xresources - [terminal/xresources](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/xresources)
131+
- iTerm - [terminal/iterm](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/iterm)
132+
- kitty - [terminal/kitty](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/kitty)
133+
- tmux - [terminal/tmux](https://github.com/projekt0n/github-nvim-theme/tree/main/terminal/tmux)
134134

135135
### Making `undercurls` work properly in **Tmux**
136136

0 commit comments

Comments
 (0)