✨ feat(nvim): added repl-highlights extra
This commit is contained in:
parent
2437538669
commit
b3efc28e99
1 changed files with 12 additions and 0 deletions
12
.config/nvim/lua/plugins/extras/dap/repl-highlights.lua
Normal file
12
.config/nvim/lua/plugins/extras/dap/repl-highlights.lua
Normal 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,
|
||||
}
|
Loading…
Add table
Reference in a new issue