dotfiles/.config/nvim/lua/plugins/extras/dap/repl-highlights.lua
2023-12-01 00:46:27 +01:00

12 lines
280 B
Lua

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