From 8549f7f7e9163c9f8e2a18a64cd30153fb738008 Mon Sep 17 00:00:00 2001 From: Lee Tang Date: Fri, 29 Apr 2022 22:34:36 +0800 Subject: [PATCH] updates for trouble --- nvim/lua/config/trouble.lua | 5 +++++ nvim/lua/plugins.lua | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 nvim/lua/config/trouble.lua diff --git a/nvim/lua/config/trouble.lua b/nvim/lua/config/trouble.lua new file mode 100644 index 0000000..e43f2ae --- /dev/null +++ b/nvim/lua/config/trouble.lua @@ -0,0 +1,5 @@ +require('trouble').setup({ + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below +}) diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index 46e39f2..cfd2604 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -34,6 +34,12 @@ return require('packer').startup(function(use) }) end, }) + use({ + 'folke/trouble.nvim', + config = function() + require('config.trouble') + end, + }) use({ 'lukas-reineke/indent-blankline.nvim', config = function()