telescope-project.nvim
telescope-project.nvim copied to clipboard
No installation instructions?
To some (or many) it may seem redundant to list install instructions. When I didn't see them I got confused, as if Project was already bundled and I just needed to activate it (the other plugins from this org include them). But then it wouldn't be a plugin. Searched the issues and people were indeed installing it. Sorry if this issue is much ado about nothing...
- You have to add
use 'nvim-telescope/telescope-project.nvim'
into yourinit.lua
, like this for example:
return require('packer').startup(function()
use 'nvim-telescope/telescope-project.nvim'
end)
- Then you also need to have this line in the
init.lua
:require'telescope'.load_extension('project')
- Then you can run
PackerSync
to have it install the extension
@Signynt Maybe adding this to the README.md right before the Setup
section would be great?