From 0031e4f74d420625e7365bbf64bd24fd6d6417e0 Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Fri, 10 Sep 2021 16:35:00 +0800 Subject: [PATCH] add Trouble support --- README.md | 1 + colors/zenbones.vim | 3 +++ lua/zenbones/init.lua | 4 ++++ 3 files changed, 8 insertions(+) diff --git a/README.md b/README.md index b94c0cd..ac12ceb 100644 --- a/README.md +++ b/README.md @@ -141,6 +141,7 @@ currently supported. - [CoC](https://github.com/neoclide/coc.nvim) - [Neogit](https://github.com/TimUntersberger/neogit) - [WhichKey](https://github.com/folke/which-key.nvim) +- [Trouble](https://github.com/folke/trouble.nvim) ## Other implementations diff --git a/colors/zenbones.vim b/colors/zenbones.vim index 9bfe698..913c12d 100644 --- a/colors/zenbones.vim +++ b/colors/zenbones.vim @@ -190,6 +190,9 @@ highlight! link TelescopeBorder FloatBorder highlight! link TelescopeSelection CursorLine highlight! link TermCursor Cursor highlight! link TermCursorNC lCursor +highlight! link TroubleNormal Function +highlight! link TroubleSource Constant +highlight! link TroubleText Function highlight! link WhichKey Statement highlight! link WhichKeyGroup Special highlight! link WhichKeySeparator LineNr diff --git a/lua/zenbones/init.lua b/lua/zenbones/init.lua index e128c19..f565f88 100644 --- a/lua/zenbones/init.lua +++ b/lua/zenbones/init.lua @@ -342,6 +342,10 @@ local theme = lush(function() WhichKeyGroup { Special }, WhichKeySeparator { LineNr }, WhichKeyValue { Constant }, + + TroubleNormal { Function }, + TroubleText { Function }, + TroubleSource { Constant }, } end) -- stylua: ignore end