Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sidebar-nvim/sections-dap
Dap sections for sidebar.nvim
https://github.com/sidebar-nvim/sections-dap
dap lua neovim sidebar-nvim
Last synced: 12 days ago
JSON representation
Dap sections for sidebar.nvim
- Host: GitHub
- URL: https://github.com/sidebar-nvim/sections-dap
- Owner: sidebar-nvim
- Created: 2021-09-26T19:33:38.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-24T15:38:09.000Z (4 months ago)
- Last Synced: 2024-08-01T19:57:44.842Z (3 months ago)
- Topics: dap, lua, neovim, sidebar-nvim
- Language: Lua
- Homepage:
- Size: 260 KB
- Stars: 26
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dap Sections for [sidebar.nvim](https://github.com/GustavoKatel/sidebar.nvim)
### Requirements:
- [nvim-dap](https://github.com/mfussenegger/nvim-dap)
- [sidebar.nvim](https://github.com/GustavoKatel/sidebar.nvim)## Available Sections
### Breakpoints
![screenshot](./docs/screenshot.png)
Show current breakpoints into the sidebar
#### Configuration
```lua
require("sidebar-nvim").setup({
...
sections = {
"datetime",
"git",
"diagnostics",
require("dap-sidebar-nvim.breakpoints")
},
dap = {
breakpoints = {
icon = "🔍"
}
}
...
})
```## Colors
| Highlight Group | Defaults To |
| --------------- | ----------- |
| *SidebarNvimDapBreakpointFileName* | Label |
| *SidebarNvimDapBreakpointTotalNumber* | Normal |
| *SidebarNvimDapBreakpointText* | Normal |
| *SidebarNvimDapBreakpointLineNumber* | LineNr |