docs: Add treesitter to optional list.
This commit is contained in:
@@ -34,6 +34,8 @@ Plug 'nvim-lua/telescope.nvim'
|
|||||||
|
|
||||||
- bat (preview)
|
- bat (preview)
|
||||||
- ripgrep (finder)
|
- ripgrep (finder)
|
||||||
|
- Treesitter (nvim-treesitter)
|
||||||
|
- fd ([sharkdp/fd](https://github.com/sharkdp/fd))
|
||||||
- git (picker)
|
- git (picker)
|
||||||
- LSP (picker)
|
- LSP (picker)
|
||||||
- [devicons](https://github.com/kyazdani42/nvim-web-devicons)
|
- [devicons](https://github.com/kyazdani42/nvim-web-devicons)
|
||||||
@@ -109,7 +111,8 @@ Searches files in your working directory.
|
|||||||
|
|
||||||
```lua
|
```lua
|
||||||
require'telescope.builtin'.grep_string{
|
require'telescope.builtin'.grep_string{
|
||||||
search = false -- Search term or <cword>
|
-- Optional
|
||||||
|
-- search = false -- Search term or <cword>
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -166,7 +169,7 @@ Search on all workspace symbols.
|
|||||||
```lua
|
```lua
|
||||||
require'telescope.builtin'.treesitter{
|
require'telescope.builtin'.treesitter{
|
||||||
-- Optional
|
-- Optional
|
||||||
bufnr = -- Buffer handle
|
-- bufnr = Buffer handle
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user