From b3efc28e9961803444f4f7f2d95795515e5eca5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Fri, 1 Dec 2023 00:46:27 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(nvim):=20added=20repl-highligh?= =?UTF-8?q?ts=20extra?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nvim/lua/plugins/extras/dap/repl-highlights.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .config/nvim/lua/plugins/extras/dap/repl-highlights.lua diff --git a/.config/nvim/lua/plugins/extras/dap/repl-highlights.lua b/.config/nvim/lua/plugins/extras/dap/repl-highlights.lua new file mode 100644 index 00000000..e84ecb8e --- /dev/null +++ b/.config/nvim/lua/plugins/extras/dap/repl-highlights.lua @@ -0,0 +1,12 @@ +return { + "nvim-treesitter/nvim-treesitter", + dependencies = { + "LiadOz/nvim-dap-repl-highlights", + opts = {}, + }, + opts = function(_, opts) + if type(opts.ensure_installed) == "table" then + vim.list_extend(opts.ensure_installed, { "dap_repl" }) + end + end, +}