diff options
| author | Dave Lage <rockerboo@gmail.com> | 2020-09-07 01:17:32 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-07 01:17:32 -0400 |
| commit | 1b04f99e42cfa331e316c227ed1fd66cc22279b8 (patch) | |
| tree | 230c3f1d8f1f080fd6f124332abe2d3de2370aa7 | |
| parent | a665cd2848ecf4235ab9a5531f1bfc7b2e416d20 (diff) | |
| parent | 856de19d155edc09aec8c7a2770aff4ce0dadb81 (diff) | |
Merge pull request #39 from rockerBOO/docs
docs: Add treesitter to optional list.
| -rw-r--r-- | README.md | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -34,6 +34,8 @@ Plug 'nvim-lua/telescope.nvim' - bat (preview) - ripgrep (finder) +- Treesitter (nvim-treesitter) +- fd ([sharkdp/fd](https://github.com/sharkdp/fd)) - git (picker) - LSP (picker) - [devicons](https://github.com/kyazdani42/nvim-web-devicons) @@ -109,7 +111,8 @@ Searches files in your working directory. ```lua 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 require'telescope.builtin'.treesitter{ -- Optional - bufnr = -- Buffer handle + -- bufnr = Buffer handle } ``` |
