Configure neovim to show all telescope builtin + extensions

As seen on
https://www.reddit.com/r/neovim/comments/tw2d1q/are_additional_pickers_supposed_to_appear_in_the/
This commit is contained in:
Daniel Siepmann 2022-05-25 13:17:48 +02:00
parent c19df3de09
commit 41a03f832d
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
2 changed files with 1 additions and 2 deletions

View file

@ -10,7 +10,7 @@ nnoremap <leader>v :set paste!<cr>
nnoremap <leader>nh :nohlsearch<cr>
" Configure navigation, e.g. go to buffer, file, ...
nnoremap <leader>pp :Telescope builtin<cr>
nnoremap <leader>pp :lua require('telescope.builtin').builtin({ include_extensions = true })<cr>
nnoremap <leader>pf :Telescope git_files<cr>
nnoremap <leader>pb :Telescope buffers<cr>
nnoremap <leader>pt :Telescope ctags_outline outline<cr>

View file

@ -26,5 +26,4 @@ require('telescope').setup({
},
},
})
require('telescope').load_extension('custom_runs')