add Trouble support

This commit is contained in:
Michael Chris Lopez
2021-09-10 16:35:00 +08:00
parent aa60066fc1
commit 0031e4f74d
3 changed files with 8 additions and 0 deletions

View File

@@ -141,6 +141,7 @@ currently supported.
- [CoC](https://github.com/neoclide/coc.nvim) - [CoC](https://github.com/neoclide/coc.nvim)
- [Neogit](https://github.com/TimUntersberger/neogit) - [Neogit](https://github.com/TimUntersberger/neogit)
- [WhichKey](https://github.com/folke/which-key.nvim) - [WhichKey](https://github.com/folke/which-key.nvim)
- [Trouble](https://github.com/folke/trouble.nvim)
## Other implementations ## Other implementations

View File

@@ -190,6 +190,9 @@ highlight! link TelescopeBorder FloatBorder
highlight! link TelescopeSelection CursorLine highlight! link TelescopeSelection CursorLine
highlight! link TermCursor Cursor highlight! link TermCursor Cursor
highlight! link TermCursorNC lCursor highlight! link TermCursorNC lCursor
highlight! link TroubleNormal Function
highlight! link TroubleSource Constant
highlight! link TroubleText Function
highlight! link WhichKey Statement highlight! link WhichKey Statement
highlight! link WhichKeyGroup Special highlight! link WhichKeyGroup Special
highlight! link WhichKeySeparator LineNr highlight! link WhichKeySeparator LineNr

View File

@@ -342,6 +342,10 @@ local theme = lush(function()
WhichKeyGroup { Special }, WhichKeyGroup { Special },
WhichKeySeparator { LineNr }, WhichKeySeparator { LineNr },
WhichKeyValue { Constant }, WhichKeyValue { Constant },
TroubleNormal { Function },
TroubleText { Function },
TroubleSource { Constant },
} }
end) end)
-- stylua: ignore end -- stylua: ignore end