diff options
Diffstat (limited to 'lua/cshift/plugins/init.lua')
-rw-r--r-- | lua/cshift/plugins/init.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lua/cshift/plugins/init.lua b/lua/cshift/plugins/init.lua index e85aff2..9ca8f14 100644 --- a/lua/cshift/plugins/init.lua +++ b/lua/cshift/plugins/init.lua @@ -13,5 +13,20 @@ return { vim.cmd.colorscheme("tender") end }, + { + "folke/trouble.nvim", + dependencies = { "nvim-tree/nvim-web-devicons" }, + opts = { + position = "right", + signs = { + -- icons / text used for a diagnostic + error = "<U+F0026>", + warning = "<U+F023B>", + hint = "<U+EA61>", + information = "<U+F05A>", + other = "<U+F059>", + }, + }, + }, } |