Skip to content

Commit c7a10a1

Browse files
committed
feat: use external nio
BREAKING CHANGE: Requires https://github.com/nvim-neotest/nvim-nio to be installed
1 parent a6beb3a commit c7a10a1

34 files changed

+127
-5293
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,28 @@ good out of the box configuration.
99

1010
## Installation
1111

12-
Install with your favourite package manager alongside nvim-dap
12+
Install with your favourite package manager alongside nvim-dap and nvim-nio
1313

1414
[**dein**](https://github.com/Shougo/dein.vim):
1515

1616
```vim
1717
call dein#add("mfussenegger/nvim-dap")
18+
call dein#add("nvim-neotest/nvim-nio")
1819
call dein#add("rcarriga/nvim-dap-ui")
1920
```
2021

2122
[**vim-plug**](https://github.com/junegunn/vim-plug)
2223

2324
```vim
2425
Plug 'mfussenegger/nvim-dap'
26+
Plug 'nvim-neotest/nvim-nio'
2527
Plug 'rcarriga/nvim-dap-ui'
2628
```
2729

2830
[**packer.nvim**](https://github.com/wbthomason/packer.nvim)
2931

3032
```lua
31-
use { "rcarriga/nvim-dap-ui", requires = {"mfussenegger/nvim-dap"} }
33+
use { "rcarriga/nvim-dap-ui", requires = {"mfussenegger/nvim-dap", "nvim-neotest/nvim-nio"} }
3234
```
3335

3436
It is highly recommended to use [neodev.nvim](https://github.com/folke/neodev.nvim) to enable type checking for nvim-dap-ui to get

0 commit comments

Comments
 (0)