# nvim-dap-virtual-text **Repository Path**: wedojava/nvim-dap-virtual-text ## Basic Information - **Project Name**: nvim-dap-virtual-text - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-02-28 - **Last Updated**: 2024-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # nvim-dap-virtual-text This plugin adds virtual text support to [nvim-dap](https://github.com/mfussenegger/nvim-dap). [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter) is used to find variable definitions. ```vim Plug 'mfussenegger/nvim-dap' Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} Plug 'theHamsta/nvim-dap-virtual-text' ``` The hlgroup for the virtual text is `NvimDapVirtualText` (linked to `Comment`). Exceptions that caused the debugger to stop are displayed as `NvimDapVirtualTextError` (linked to `DiagnosticVirtualTextError`). Changed and new variables will be highlighted with `NvimDapVirtualTextChanged` (default linked to `DiagnosticVirtualTextWarn`). The behavior of this can plugin can be activated and controlled via a `setup` call ```lua require("nvim-dap-virtual-text").setup() ``` Wrap this call with `lua <