diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2024-05-09 15:14:34 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2024-05-09 15:14:34 -0400 |
commit | 26a0660f278d78e049364e69f4ebaa39e8cf1116 (patch) | |
tree | a76883a9236a44d900f405728e172f9cfae38965 /lua/cshift/plugins/init.lua | |
parent | 6d4f997bb8bebf0dc629f3ffa63649cfd170011e (diff) |
trouble
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>", + }, + }, + }, } |