From 856de19d155edc09aec8c7a2770aff4ce0dadb81 Mon Sep 17 00:00:00 2001 From: rockerBOO Date: Mon, 7 Sep 2020 01:16:16 -0400 Subject: [PATCH] docs: Add treesitter to optional list. --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 002e673..9cf2525 100644 --- a/README.md +++ b/README.md @@ -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 + -- Optional + -- search = false -- Search term or } ``` @@ -166,7 +169,7 @@ Search on all workspace symbols. ```lua require'telescope.builtin'.treesitter{ -- Optional - bufnr = -- Buffer handle + -- bufnr = Buffer handle } ```