diff options
author | joe <rbo@gmx.us> | 2025-10-20 11:01:00 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-10-20 11:01:00 +0200 |
commit | 5e220aa6919b8281d7c497ce8533be31968ddd6e (patch) | |
tree | 32f88311e38d394dae62e1189452c0388e9399a7 /.config/nvim/lua/plugins | |
parent | up (diff) | |
download | dotfiles-bsd-5e220aa6919b8281d7c497ce8533be31968ddd6e.tar.gz dotfiles-bsd-5e220aa6919b8281d7c497ce8533be31968ddd6e.tar.bz2 dotfiles-bsd-5e220aa6919b8281d7c497ce8533be31968ddd6e.tar.xz dotfiles-bsd-5e220aa6919b8281d7c497ce8533be31968ddd6e.tar.zst dotfiles-bsd-5e220aa6919b8281d7c497ce8533be31968ddd6e.zip |
up
Diffstat (limited to '.config/nvim/lua/plugins')
-rw-r--r-- | .config/nvim/lua/plugins/trouble.lua | 27 |
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 - } -} |