Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Features

* Lots of style-customization options (contrast, color invertion, italics usage etc.)
* Extended filetype highlighting: Html, Xml, Vim, Clojure, C, Python, JavaScript, TypeScript, PureScript, CoffeeScript, Ruby, Objective-C, Go, Lua, MoonScript, Java, Markdown, Haskell, Elixir
* Supported plugins: [EasyMotion][], [vim-sneak][], [Indent Guides][], [indentLine][], [Rainbow Parentheses][], [Airline][], [Lightline][], [GitGutter][], [Signify][], [ShowMarks][], [Signature][], [Syntastic][], [Ale][], [CtrlP][], [Startify][], [NERDTree][], [Dirvish][]
* Supported plugins: [EasyMotion][], [vim-sneak][], [Indent Guides][], [indentLine][], [Rainbow Parentheses][], [Airline][], [Lightline][], [GitGutter][], [Signify][], [ShowMarks][], [Signature][], [Syntastic][], [Ale][], [CtrlP][], [Startify][], [NERDTree][], [Dirvish][], [vim-lsp][]

[EasyMotion]: https://github.com/Lokaltog/vim-easymotion
[vim-sneak]: https://github.com/justinmk/vim-sneak
Expand All @@ -85,6 +85,7 @@ Features
[Startify]: https://github.com/mhinz/vim-startify
[NERDTree]: https://github.com/scrooloose/nerdtree
[Dirvish]: https://github.com/justinmk/vim-dirvish
[vim-lsp]: https://github.com/prabirshrestha/vim-lsp

Contributions
-------------
Expand Down
19 changes: 19 additions & 0 deletions colors/gruvbox.vim
Original file line number Diff line number Diff line change
Expand Up @@ -760,6 +760,25 @@ hi! link GitGutterChangeDelete GruvboxAquaSign
hi! link gitcommitSelectedFile GruvboxGreen
hi! link gitcommitDiscardedFile GruvboxRed

" }}}
" vim-lsp: "{{{

hi! link LspErrorHighlight GruvboxRed
hi! link LspWarningHighlight GruvboxYellow
hi! link LspInformationHighlight GruvboxBlue
hi! link LspHintHighlight GruvboxBlue

hi! link LspErrorText GruvboxRedSign
hi! link LspWarningText GruvboxYellowSign
hi! link LspInformationText GruvboxBlueSign
hi! link LspHintText GruvboxBlueSign

call s:HL('LspErrorHighlight', s:none, s:none, s:undercurl, s:red)
call s:HL('LspWarningHighlight', s:none, s:none, s:undercurl, s:orange)
call s:HL('LspInfoHighlight', s:none, s:none, s:undercurl, s:yellow)
call s:HL('LspHintHighlight', s:none, s:none, s:undercurl, s:blue)
call s:HL('lspReference', s:none, s:none, s:inverse . s:italic, s:none)

" }}}
" Signify: {{{

Expand Down