Skip to content

Commit

Permalink
feat(debugging): add nvim-dap-repl-highlights
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Fischer (tku137) committed Jul 18, 2023
1 parent 881847d commit 3f2871d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# nvim-dap-repl-highlights

Add syntax highlighting to the nvim-dap REPL buffer using treesitter.

**Repository:** <https://github.com/LiadOz/nvim-dap-repl-highlights>

Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
return {
"LiadOz/nvim-dap-repl-highlights",
dependencies = { "mfussenegger/nvim-dap" },
event = "User AstroFile",
config = function()
require("nvim-dap-repl-highlights").setup()
require("nvim-treesitter.configs").setup {
highlight = {
enable = true,
},
ensure_installed = { "dap_repl" },
}
end,
}

0 comments on commit 3f2871d

Please sign in to comment.