-
-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(debugging): add nvim-dap-repl-highlights
- Loading branch information
Tony Fischer (tku137)
committed
Jul 18, 2023
1 parent
881847d
commit 3f2871d
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
lua/astrocommunity/debugging/nvim-dap-repl-highlights Kopie/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
14 changes: 14 additions & 0 deletions
14
lua/astrocommunity/debugging/nvim-dap-repl-highlights Kopie/init.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
} |