feat(nvim): added repl-highlights extra

This commit is contained in:
Sergio Laín 2023-12-01 00:46:27 +01:00
parent 2437538669
commit b3efc28e99
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

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