summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/trouble.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.config/nvim/lua/plugins/trouble.lua27
1 files changed, 0 insertions, 27 deletions
diff --git a/.config/nvim/lua/plugins/trouble.lua b/.config/nvim/lua/plugins/trouble.lua
deleted file mode 100644
index 11c23a3..0000000
--- a/.config/nvim/lua/plugins/trouble.lua
+++ /dev/null
@@ -1,27 +0,0 @@
-return {
- {
- 'folke/trouble.nvim',
- requires = {
- {'nvim-tree/nvim-web-devicons'},
- },
- config = function()
- require('trouble').setup {
- -- icons = true,
- }
-
- -- Diagnostic signs
- -- https://github.com/folke/trouble.nvim/issues/52
- local signs = {
- Error = " ",
- Warn = " ",
- Hint = " ",
- Info = " "
- }
-
- for type, icon in pairs(signs) do
- local hl = "DiagnosticSign" .. type
- vim.fn.sign_define(hl, {text = icon, texthl = hl, numhl = hl})
- end
- end
- }
-}