telescope-sessions extends sessions.nvim through telescope.nvim.
You can show the picker from neovim's cmd-line by executing
:Telescope telescope-sessions search_sessions
Or straight from the plugin's path with lua
:lua require('telescope-sessions').search_session()
You can press C-d
on any Item in the picker to delete the session.
Install with your favorite Neovim package manager. Just make sure that you also install sessions.nvim!
Example with packer.nvim:
use {
'LukasPietzschmann/telescope-sessions',
requires = { 'LukasPietzschmann/sessions.nvim' }
}