From b49c888641ecc9b54bfd56996745757429766554 Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Fri, 29 Nov 2024 14:13:34 -0500 Subject: [PATCH] trouble no longer gains focus immediately after opening --- .config/nvim/lua/plugins/trouble.lua | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.config/nvim/lua/plugins/trouble.lua b/.config/nvim/lua/plugins/trouble.lua index ddf2a2b..cb20e4d 100644 --- a/.config/nvim/lua/plugins/trouble.lua +++ b/.config/nvim/lua/plugins/trouble.lua @@ -1,11 +1,11 @@ return { - 'folke/trouble.nvim', - dependencies = { - 'nvim-tree/nvim-web-devicons', - 'folke/todo-comments.nvim', - }, - cmd = 'Trouble', - opts = { - focus = true, - }, -} \ No newline at end of file + 'folke/trouble.nvim', + dependencies = { + 'nvim-tree/nvim-web-devicons', + 'folke/todo-comments.nvim', + }, + cmd = 'Trouble', + opts = { + focus = false, + }, +}