From 9a4a3a0c8b06e9d03845f759a143b8e9a0ff7852 Mon Sep 17 00:00:00 2001 From: rockerBOO Date: Sat, 12 Sep 2020 16:33:39 -0400 Subject: [PATCH] Add nvim config example --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 81b53e2..4a3304b 100644 --- a/README.md +++ b/README.md @@ -96,6 +96,14 @@ Search over files in your `cwd` current working directory. nnoremap gr lua require'telescope.builtin'.lsp_references{} ``` +Search over variable references from your Language Server. + +```vim +nnoremap en lua require'telescope.builtin'.find_files{ cwd = "~/.config/nvim/" } +``` + +Find all the files in your nvim config. + #### Full Example ```vim