Skip to content

Commit

Permalink
v 1.6.3
Browse files Browse the repository at this point in the history
golang + json + yaml + vimtex support added
  • Loading branch information
lighthaus-theme committed Jun 15, 2021
1 parent 3d3c3b4 commit a81c782
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

### Table of Contents
- [vim](#vim)
- v1.6.3
- v1.5.3
- v1.4.3
- v1.3.2
Expand All @@ -20,6 +21,10 @@
- [License](#license)

### Vim

#### v1.6.3
- Support added for [vimtex](https://github.com/lervag/vimtex). Better support for `json`, `go` and `yaml` files. _(15/06/2021)_

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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ A [Lighthaus](https://github.com/lighthaus-theme/lighthaus) theme for [Vim](http
- [Vim-Airline](#vim-airline)
- [Lightline](#lightline)
- [Options](#options)
- [Options](#options)
- [Contributing](#contributing)
- [Version](#version)
- [Bugs/Issues](#bugs/issues)
Expand All @@ -42,6 +41,7 @@ It comes with support for the following popular plugins:
- [vim-signature](https://github.com/kshenoy/vim-signature)
- [vim-signify](https://github.com/mhinz/vim-signify)
- [vim-startify](https://github.com/mhinz/vim-startify)
- [vimtex](https://github.com/lervag/vimtex)
- [vimwiki](https://github.com/vimwiki/vimwiki)

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

```vim
v 1.5.3 vim
v 1.6.3 vim
v 1.0.2 vim-airline
v 1.0.0 lightline
```
Expand Down
90 changes: 82 additions & 8 deletions colors/lighthaus.vim
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if exists("syntax_on")
endif

let g:colors_name = "lighthaus"
let g:version = "1.4.3"
let g:version = "1.6.3"
" }


Expand Down Expand Up @@ -284,16 +284,53 @@ call s:h("Debug", s:fg, "", "")
call s:h("Ignore", s:white2, "", "")
" }


" ― ― ― ― ― ― ―
" ― GO LANG ―
" ― ― ― ― ― ― ―
" {
call s:h("goDirective", s:purple2, "", "")
call s:h("goDeclType", s:hl_yellow, "", "")
call s:h("goDeclaration", s:cyan, "", "")
call s:h("goBuiltins", s:fg_alt, "", "")
call s:h("goVarDefs", s:cyan2, "", "")
call s:h("goVarAssign", s:blue2, "", "")
call s:h("goVar", s:purple2, "", "")
call s:h("goDeclType", s:orange2, "", "")
call s:h("goSemicolon", s:white2, "", "")
call s:h("goQuotationsMarks", s:white2, "", "")
hi link goConstants Constant
hi link goFunctionCall Function
hi link goEscapeError ErrorMsg
hi link goType Type
hi link goTypeName Typedef
" }


" ― ― ― ― ― ―
" ― JAVA―
" ― JAVA
" ― ― ― ― ― ―
" {
call s:h("javaOperator", s:cyan2, "", "")
call s:h("javaVarArg", s:purple2, "", "")
" }


" ― ― ― ― ― ―
" ― JSON ―
" ― ― ― ― ― ―
" {
call s:h("jsonKeyword", s:purple2, "", "")
call s:h("jsonNoise", s:white, "", "")
call s:h("jsonQuote", s:grey, "", "")
call s:h("jsonBraces", s:hl_orange, "", "")
hi link jsonBoolean Boolean
hi link jsonString String
" }


" ― ― ― ― ― ―
" ― MAKE―
" ― MAKE
" ― ― ― ― ― ―
" {
call s:h("makePreCondit", s:purple2, "", "")
Expand Down Expand Up @@ -325,9 +362,9 @@ call s:h("markdownUrlTitleDelimiter", s:cyan, "", "")
" }


" ― ― ― ― ― ― ― ― ―
" ― ― ― ― ― ― ―
" ― PYTHON ―
" ― ― ― ― ― ― ― ― ―
" ― ― ― ― ― ― ―
" {
call s:h("pythonConditional", s:purple2, "", "")
call s:h("pythonException", s:purple2, "", "")
Expand All @@ -338,15 +375,32 @@ call s:h("pythonStatement", s:cyan, "", "")
call s:h("pythonBoolean", s:blue2, "", "")
" }

" ― ― ― ― ― ― ― ― ―

" ― ― ― ― ―
" ― SQL ―
" ― ― ― ― ― ― ― ― ―
" ― ― ― ― ―
" {
call s:h("sqlKeyword", s:cyan2, "", "")
call s:h("sqlSpecial", s:orange2, "", "")
" }


" ― ― ― ― ― ―
" ― YAML ―
" ― ― ― ― ― ―
" {
call s:h("yamlBlockMappingKey", s:purple2, "", "")
call s:h("yamlBool", s:cyan2, "", "")
call s:h("yamlDocumentStart", s:hl_orange, "", "")
call s:h("yamlKey", s:purple, "", "")
call s:h("yamlString", s:green2, "", "")
hi link yamlComment Comment
hi link yamlConstant Constant
hi link yamlKeyValueDelimiter Delimiter
" }



" + + + + + + + + + PLUGINS + + + + + + + + +


Expand Down Expand Up @@ -616,8 +670,28 @@ call s:h("StartifySpecial", s:hl_orange, "", "")
" }



" ― ― ― ― ― ― ― ― ―
" VIMTEX
" vimtex: https://github.com/lervag/vimtex
" ― ― ― ― ― ― ― ― ―
" {
call s:h("texCmd", s:cyan2, "", "")
call s:h("texCmdAuthor", s:fg_alt, "", s:B)
call s:h("texCmdClass", s:hl_yellow, "", "")
call s:h("texCmdTitle", s:fg_alt, "", s:B)
call s:h("texCmdDef", s:purple, "", "")
call s:h("texCmdEnv", s:purple, "", "")
call s:h("texCmdPart", s:purple, "", "")
call s:h("texDefArgName", s:orange2, "", "")
call s:h("texEnvArgName", s:green2, "", "")
call s:h("texFileArg", s:blue2, "", "")
call s:h("texMathEnvArgName", s:green2, "", "")
" }


" ― ― ― ― ― ― ― ― ―
" VIMWIKI
" VIMWIKI
" https://github.com/vimwiki/vimwiki
" ― ― ― ― ― ― ― ― ―
call s:h("VimwikiHeader1", s:hl_yellow, "", s:B)
Expand Down
4 changes: 2 additions & 2 deletions doc/lighthaus.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
*lighthaus.txt* For Vim version 8 or newer Last change: 08 April 2021

Lighthaus Vim Theme
Lighthaus Vim Theme
*lighthaus*
*lighthaus-theme*
*lighthaus-colorscheme*
Expand All @@ -24,7 +24,7 @@ a visually balanced theme.
For all details and screenshots, please refer to the github repo
https://github.com/lighthaus-theme/vim

Lighthaus vim plugin contains the following:
Lighthaus (n)vim plugin contains the following:

- Lighthaus colorscheme for vim
- Lighthaus colorscheme for vim-airline
Expand Down

0 comments on commit a81c782

Please sign in to comment.