Add nvim plugin telescope for finding files etc.

This commit is contained in:
don philipe
2025-02-06 10:33:07 +01:00
parent afd41cae41
commit 98d048721e
3 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
return {
'nvim-telescope/telescope.nvim', tag = '0.1.8',
dependencies = {
'nvim-lua/plenary.nvim',
'BurntSushi/ripgrep', -- required for live_grep and grep_string and is the first priority for find_files
'nvim-telescope/telescope-fzf-native.nvim', -- native telescope sorter to significantly improve sorting performance
}
}