1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
return {
{
"nvim-telescope/telescope.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
},
},
{
-- Colorscheme
"jacoborus/tender.vim",
config = function()
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>",
},
},
},
}
|