From a81c782ee57a146e11fed16013b7852a0c12f2dc Mon Sep 17 00:00:00 2001 From: lighthaus-theme Date: Tue, 15 Jun 2021 18:30:18 +0530 Subject: [PATCH] v 1.6.3 golang + json + yaml + vimtex support added --- CHANGELOG.md | 5 +++ README.md | 4 +- colors/lighthaus.vim | 90 ++++++++++++++++++++++++++++++++++++++++---- doc/lighthaus.txt | 4 +- 4 files changed, 91 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6df0582..48c5789 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ### Table of Contents - [vim](#vim) + - v1.6.3 - v1.5.3 - v1.4.3 - v1.3.2 @@ -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)_ diff --git a/README.md b/README.md index beb8136..d25b8f3 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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 @@ -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 ``` diff --git a/colors/lighthaus.vim b/colors/lighthaus.vim index 2a045a1..cc9303c 100755 --- a/colors/lighthaus.vim +++ b/colors/lighthaus.vim @@ -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" " } @@ -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, "", "") @@ -325,9 +362,9 @@ call s:h("markdownUrlTitleDelimiter", s:cyan, "", "") " } -" ― ― ― ― ― ― ― ― ― +" ― ― ― ― ― ― ― " ― PYTHON ― -" ― ― ― ― ― ― ― ― ― +" ― ― ― ― ― ― ― " { call s:h("pythonConditional", s:purple2, "", "") call s:h("pythonException", s:purple2, "", "") @@ -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 + + + + + + + + + @@ -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) diff --git a/doc/lighthaus.txt b/doc/lighthaus.txt index e37203b..c6f8320 100644 --- a/doc/lighthaus.txt +++ b/doc/lighthaus.txt @@ -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* @@ -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