Skip to content

Commit

Permalink
inits README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jtzero committed Jun 30, 2024
1 parent 5a1337e commit c7820fb
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# GoToTestFile.nvim

### Table of Contents

- [Requirements](#requirements)
- [Installation](#installation)

---

## Requirements
- Neovim >= **0.9.0**
- [fd](https://github.com/sharkdp/fd)
- git
- rg
- realpath

## Installation

Install the plugin with your preferred package manager.
```lua
{
'jtzero/go-to-test-file.nvim',
lazy = false,
config = true,
keys = {
{
'<M-T>',
'<cmd>FindTestOrSrcCodeFileFolderOnFailure<CR>',
mode = { "n" },
desc = 'Opens a corresponding test file or source file if not found opens the test folder',
},
},
}
```

0 comments on commit c7820fb

Please sign in to comment.