Skip to content

Commit

Permalink
docs: update info about nvim-treesitter
Browse files Browse the repository at this point in the history
  • Loading branch information
Wansmer committed May 28, 2024
1 parent e1e82ab commit dd46d53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ https://github.com/Wansmer/treesj/assets/46977173/4277455b-81fd-4e99-9af7-43c77d
## Requirements

- [Neovim 0.9+](https://github.com/neovim/neovim/releases)
- [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
- [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter) (optional: if you install parsers with `nvim-treesitter`)

## Installation

Expand All @@ -56,7 +56,7 @@ With [lazy.nvim](https://github.com/folke/lazy.nvim):
return {
'Wansmer/treesj',
keys = { '<space>m', '<space>j', '<space>s' },
dependencies = { 'nvim-treesitter/nvim-treesitter' },
dependencies = { 'nvim-treesitter/nvim-treesitter' }, -- if you install parsers with `nvim-treesitter`
config = function()
require('treesj').setup({--[[ your config ]]})
end,
Expand All @@ -68,7 +68,7 @@ With [packer.nvim](https://github.com/wbthomason/packer.nvim):
```lua
use({
'Wansmer/treesj',
requires = { 'nvim-treesitter/nvim-treesitter' },
requires = { 'nvim-treesitter/nvim-treesitter' }, -- if you install parsers with `nvim-treesitter`
config = function()
require('treesj').setup({--[[ your config ]]})
end,
Expand Down

0 comments on commit dd46d53

Please sign in to comment.