Update colors so that identifiers can be spotted immediately
This commit is contained in:
parent
e3bef4bf4f
commit
5f89cc8da0
|
@ -2,13 +2,7 @@
|
||||||
|
|
||||||
`nvim-highlite` is a colorscheme template repository for Neovim 0.5+.
|
`nvim-highlite` is a colorscheme template repository for Neovim 0.5+.
|
||||||
|
|
||||||
This project aims to make the following
|
This template's focus is on compatability with [semantic highlighting](https://medium.com/@evnbr/coding-in-color-3a6db2743a1e).
|
||||||
|
|
||||||
* You can define/modify variables once instead of messing around with potentially botched substitutions.
|
|
||||||
* You can distribute a lean colorscheme, free from unnecessary logic.
|
|
||||||
* You can distribute the source alongside the colorscheme, making it easy for your users to experiment and adapt *your* colorscheme to *their* needs.
|
|
||||||
* You can focus on the design of your colorscheme rather than its implementation.
|
|
||||||
* You can start working on new colorscheme ideas very easily.
|
|
||||||
|
|
||||||
# Prerequisites
|
# Prerequisites
|
||||||
|
|
||||||
|
|
|
@ -192,7 +192,7 @@ local highlights = {
|
||||||
Float = {link='Number' },
|
Float = {link='Number' },
|
||||||
|
|
||||||
--[[ 4.1.2. Identifiers]]
|
--[[ 4.1.2. Identifiers]]
|
||||||
Identifier = {bg=NONE, fg=FG, style=NONE},
|
Identifier = {bg=NONE, fg=white, style=NONE},
|
||||||
Function = {bg=NONE, fg=purple, style=NONE},
|
Function = {bg=NONE, fg=purple, style=NONE},
|
||||||
|
|
||||||
--[[ 4.1.3. Syntax]]
|
--[[ 4.1.3. Syntax]]
|
||||||
|
@ -222,7 +222,7 @@ local highlights = {
|
||||||
SpecialChar = {link='Character' },
|
SpecialChar = {link='Character' },
|
||||||
SpecialKey = {link='Character' },
|
SpecialKey = {link='Character' },
|
||||||
Tag = {link='Underlined' },
|
Tag = {link='Underlined' },
|
||||||
Delimiter = {bg=NONE, fg=white, style=NONE },
|
Delimiter = {bg=NONE, fg=gray, style=NONE },
|
||||||
SpecialComment = {bg=NONE, fg=gray, style={'bold', 'nocombine'}},
|
SpecialComment = {bg=NONE, fg=gray, style={'bold', 'nocombine'}},
|
||||||
Debug = {link='WarningMsg' },
|
Debug = {link='WarningMsg' },
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue