fix(ci): format
This commit is contained in:
parent
f2cc0e16a9
commit
2542e73db8
3 changed files with 8 additions and 30 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
node_modules/
|
||||||
|
|
@ -12,6 +12,7 @@ neovim theme for code, not colors.
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Plugin Integration
|
## Plugin Integration
|
||||||
|
|
||||||
- [treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
|
- [treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
|
||||||
|
|
|
||||||
|
|
@ -96,11 +96,7 @@ function M.apply()
|
||||||
tshi('Keyword', { fg = cs.blue }, { 'Statement' })
|
tshi('Keyword', { fg = cs.blue }, { 'Statement' })
|
||||||
tshi('Namespace', { fg = cs.white })
|
tshi('Namespace', { fg = cs.white })
|
||||||
tshi('Number', { fg = cs.green })
|
tshi('Number', { fg = cs.green })
|
||||||
tshi(
|
tshi('Operator', { fg = cs.white }, { '@keyword.operator', '@conditional.ternary' })
|
||||||
'Operator',
|
|
||||||
{ fg = cs.white },
|
|
||||||
{ '@keyword.operator', '@conditional.ternary' }
|
|
||||||
)
|
|
||||||
hi('Delimiter', { none = true })
|
hi('Delimiter', { none = true })
|
||||||
hi('@punctuation.delimiter', { fg = cs.white })
|
hi('@punctuation.delimiter', { fg = cs.white })
|
||||||
tshi('PreProc', { fg = cs.blue })
|
tshi('PreProc', { fg = cs.blue })
|
||||||
|
|
@ -135,31 +131,11 @@ function M.apply()
|
||||||
|
|
||||||
hi('LspInlayHint', { fg = cs.light_black })
|
hi('LspInlayHint', { fg = cs.light_black })
|
||||||
hi('LspSignatureActiveParameter', { underline = true, italic = true })
|
hi('LspSignatureActiveParameter', { underline = true, italic = true })
|
||||||
hi(
|
hi('DiagnosticError', { fg = cs.red }, { 'DiagnosticFloatingError', 'DiagnosticSignError' })
|
||||||
'DiagnosticError',
|
hi('DiagnosticWarn', { fg = cs.yellow }, { 'DiagnosticFloatingWarn', 'DiagnosticSignWarn' })
|
||||||
{ fg = cs.red },
|
hi('DiagnosticHint', { fg = cs.white }, { 'DiagnosticFloatingHint', 'DiagnosticSignHint' })
|
||||||
{ 'DiagnosticFloatingError', 'DiagnosticSignError' }
|
hi('DiagnosticOk', { fg = cs.green }, { 'DiagnosticFloatingOk', 'DiagnosticSignOk' })
|
||||||
)
|
hi('DiagnosticInfo', { fg = cs.white }, { 'DiagnosticFloatingInfo', 'DiagnosticSignInfo' })
|
||||||
hi(
|
|
||||||
'DiagnosticWarn',
|
|
||||||
{ fg = cs.yellow },
|
|
||||||
{ 'DiagnosticFloatingWarn', 'DiagnosticSignWarn' }
|
|
||||||
)
|
|
||||||
hi(
|
|
||||||
'DiagnosticHint',
|
|
||||||
{ fg = cs.white },
|
|
||||||
{ 'DiagnosticFloatingHint', 'DiagnosticSignHint' }
|
|
||||||
)
|
|
||||||
hi(
|
|
||||||
'DiagnosticOk',
|
|
||||||
{ fg = cs.green },
|
|
||||||
{ 'DiagnosticFloatingOk', 'DiagnosticSignOk' }
|
|
||||||
)
|
|
||||||
hi(
|
|
||||||
'DiagnosticInfo',
|
|
||||||
{ fg = cs.white },
|
|
||||||
{ 'DiagnosticFloatingInfo', 'DiagnosticSignInfo' }
|
|
||||||
)
|
|
||||||
hi('DiagnosticUnderlineError', { undercurl = true, special = cs.red })
|
hi('DiagnosticUnderlineError', { undercurl = true, special = cs.red })
|
||||||
hi('DiagnosticUnderlineWarn', { undercurl = true, special = cs.yellow })
|
hi('DiagnosticUnderlineWarn', { undercurl = true, special = cs.yellow })
|
||||||
hi('DiagnosticUnderlineHint', { undercurl = true, special = cs.white })
|
hi('DiagnosticUnderlineHint', { undercurl = true, special = cs.white })
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue