diff options
| author | rockerBOO <rockerboo@gmail.com> | 2020-09-12 16:33:39 -0400 |
|---|---|---|
| committer | rockerBOO <rockerboo@gmail.com> | 2020-09-12 16:33:39 -0400 |
| commit | 9a4a3a0c8b06e9d03845f759a143b8e9a0ff7852 (patch) | |
| tree | eb9af1f3ffd8ac8849c79688fdf5746fa5d82bfa | |
| parent | f449c0499ca63e653c9829c2e40bff7594e9eb23 (diff) | |
Add nvim config example
| -rw-r--r-- | README.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -96,6 +96,14 @@ Search over files in your `cwd` current working directory. nnoremap <silent> gr <cmd>lua require'telescope.builtin'.lsp_references{}<CR> ``` +Search over variable references from your Language Server. + +```vim +nnoremap <Leader>en <cmd>lua require'telescope.builtin'.find_files{ cwd = "~/.config/nvim/" }<CR> +``` + +Find all the files in your nvim config. + #### Full Example ```vim |
