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, +}