Skip to content

Commit

Permalink
v 1.5.3
Browse files Browse the repository at this point in the history
vim-signify + vim-startify added
  • Loading branch information
lighthaus-theme committed Apr 26, 2021
1 parent b4b04a0 commit e0e8a75
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 19 deletions.
40 changes: 22 additions & 18 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@

### Table of Contents
- [vim](#vim)
- v1.0.0
- v1.0.1
- v1.1.1
- v1.1.2
- v1.2.2
- v1.3.2
- v1.5.3
- v1.4.3
- v1.3.2
- v1.2.2
- v1.1.2
- v1.1.1
- v1.0.1
- v1.0.0
- [Vim-Airline](#vim-airline)
- v1.0.2
- v1.0.1
Expand All @@ -19,43 +20,46 @@
- [License](#license)

### Vim
#### v1.5.3
- Support added for [vim-signify](https://github.com/mhinz/vim-signify) [vim-startify](https://github.com/mhinz/vim-startify) _(27/04/2021)_

#### v1.4.3
- Better fzf support added.
- `ErrorMsg` `WarningMsg` `Question` colors edited. See Release v1.4.3 for screenshots.(03/04/2021)

#### v1.3.2
- Vimwiki support added. View [PR here](https://github.com/lighthaus-theme/vim-lighthaus/pull/5) (03/04/2021)
- Vimwiki support added. View [PR here](https://github.com/lighthaus-theme/vim-lighthaus/pull/5) _(03/04/2021)_

#### v1.2.2
- Beacon.nvim support added (31/03/2021)
- Added `grey` color to correct contrast issue. See [Issue](https://github.com/lighthaus-theme/lighthaus/issues/3)
- Beacon.nvim support added
- Added `grey` color to correct contrast issue. See [Issue](https://github.com/lighthaus-theme/lighthaus/issues/3) _(31/03/2021)_

#### v1.1.2
- Better coc support added (10/03/2021)
- Added option for vertical separator color. See [Issue](https://github.com/lighthaus-theme/vim-lighthaus/issues/3)
- Better coc support added
- Added option for vertical separator color. See [Issue](https://github.com/lighthaus-theme/vim-lighthaus/issues/3) _(10/03/2021)_

#### v1.1.1
- Nvim-Treesitter support added (06/03/2021)
- Nvim-Treesitter support added _(06/03/2021)_

#### v1.0.1
- Neovim colors corrected (27/02/2021)
- Neovim colors corrected _(27/02/2021)_

#### v1.0.0
- Initial Commit Vim Lighthaus Theme (24/02/2021)
- Initial Commit Vim Lighthaus Theme _(24/02/2021)_

### Vim-Airline
#### v1.0.2
- Configured Variables (22/10/2020)
- Configured Variables _(22/10/2020)_

#### v1.0.1
- Changed double quotes to single quotes in accordance with [Google VimScript Style Guide (Strings)](https://google.github.io/styleguide/vimscriptguide.xml?showone=Strings#Strings) (25/09/2020)
- Changed double quotes to single quotes in accordance with [Google VimScript Style Guide (Strings)](https://google.github.io/styleguide/vimscriptguide.xml?showone=Strings#Strings) _(25/09/2020)_

#### v1.0.0
- Initial Commit lightline Theme (05/10/2020)
- Initial Commit lightline Theme _(05/10/2020)_

### Lightline
#### v1.0.0
- Initial Commit lightline Theme (05/10/2020)
- Initial Commit lightline Theme _(05/10/2020)_

### Versioning System
Lighthaus and all it's projects use [Semantic Versioning](https://semver.org/). <br/>
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ It comes with support for the following popular plugins:
- [vim-indent-guides](https://github.com/nathanaelkane/vim-indent-guides)
- [vim-plug](https://github.com/junegunn/vim-plug)
- [vim-signature](https://github.com/kshenoy/vim-signature)
- [vim-signify](https://github.com/mhinz/vim-signify)
- [vim-startify](https://github.com/mhinz/vim-startify)
- [vimwiki](https://github.com/vimwiki/vimwiki)

### Screenshots
Expand Down Expand Up @@ -121,7 +123,7 @@ Pull Request Template can be found [here](https://github.com/lighthaus-theme/lig
### Version

```vim
v 1.4.3 vim
v 1.5.3 vim
v 1.0.2 vim-airline
v 1.0.0 lightline
```
Expand Down
29 changes: 29 additions & 0 deletions colors/lighthaus.vim
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,35 @@ call s:h("SignatureMarkText", s:hl_orange, "", "")
" }


" ― ― ― ― ― ― ― ― ―
" VIM SIGNIFY
" https://github.com/mhinz/vim-signify
" ― ― ― ― ― ― ― ― ―
" {
hi link SignifySignAdd GitGutterAdd
hi link SignifySignChange GitGutterChange
hi link SignifySignDelete GitGutterDelete
" }


" ― ― ― ― ― ― ― ― ―
" VIM STARTIFY
" https://github.com/mhinz/vim-startify
" ― ― ― ― ― ― ― ― ―
" {
call s:h("StartifyBracket", s:grey, "", "")
call s:h("StartifyFile", s:green2, "", "")
call s:h("StartifyFooter", s:grey, "", "")
call s:h("StartifyHeader", s:cyan2, "", "")
call s:h("StartifyNumber", s:purple, "", "")
call s:h("StartifyPath", s:white2, s:bg, "")
call s:h("StartifySection", s:blue2, "", "")
call s:h("StartifySelect", s:bg, s:hl_yellow, "")
call s:h("StartifySlash", s:white2, "", "")
call s:h("StartifySpecial", s:hl_orange, "", "")
" }


" ― ― ― ― ― ― ― ― ―
" ― VIMWIKI ―
" https://github.com/vimwiki/vimwiki
Expand Down

0 comments on commit e0e8a75

Please sign in to comment.