Home

Awesome

telescope-project.nvim

An extension for telescope.nvim that allows you to switch between projects.

Demo

Demo

Requirements

Setup

You can setup the extension by adding the following to your config:

require'telescope'.load_extension('project')

You may skip explicitly loading extensions (they will then be lazy-loaded), but tab completions will not be available right away.

Available functions:

Project

The projects picker:

require'telescope'.extensions.project.project{}

Default mappings (normal mode):

KeyDescription
ddelete currently selected project
rrename currently selected project
ccreate a project*
ssearch inside files within your project
bbrowse inside files within your project
wchange to the selected project's directory without opening it
Rfind a recently opened file within your project
ffind a file within your project (same as <CR>)
ochange current cd scope

Default mappings (insert mode):

KeyDescription
<c-d>delete currently selected project
<c-v>rename currently selected project
<c-a>create a project*
<c-s>search inside files within your project
<c-b>browse inside files within your project
<c-l>change to the selected project's directory without opening it
<c-r>find a recently opened file within your project
<c-f>find a file within your project (same as <CR>)
<c-o>change current cd scope

* defaults to your git root if used inside a git project, otherwise, it will use your current working directory

Workspace mappings (insert mode):

KeyDescription
<c-w>change workspace

Example key map config:

vim.api.nvim_set_keymap(
        'n',
        '<C-p>',
        ":lua require'telescope'.extensions.project.project{}<CR>",
        {noremap = true, silent = true}
)

Available options:

KeysDescriptionOptions
display_typeShow the title and the path of the project'full' or 'minimal' (default)

Options can be added when requiring telescope-project, as shown below:

lua require'telescope'.extensions.project.project{ display_type = 'full' }

Available setup settings:

KeysDescriptionOptions
base_dirsArray of project base directory configurationstable (default: nil)
hidden_filesShow hidden files in selected projectbool (default: false)
order_byOrder projects by asc, desc, recentstring (default: recent)
sync_with_nvim_treeSync projects with nvim tree pluginbool (default: false)
search_byTelescope finder search by field (title/path)string or table (default: title). Can also be a table {"title", "path"} to search by both title and path
on_project_selectedCustom handler when project is selectedfunction(prompt_bufnr) (default: find project files)
cd_scopeArray of cd scopes: tab, window, globaltable (default: {"tab", "window"})
Setup settings can be added when requiring telescope, as shown below:
require('telescope').setup {
  local project_actions = require("telescope._extensions.project.actions")
  extensions = {
    project = {
      base_dirs = {
        '~/dev/src',
        {'~/dev/src2'},
        {'~/dev/src3', max_depth = 4},
        {path = '~/dev/src4'},
        {path = '~/dev/src5', max_depth = 2},
      },
      hidden_files = true, -- default: false
      theme = "dropdown",
      order_by = "asc",
      search_by = "title",
      sync_with_nvim_tree = true, -- default false
      -- default for on_project_selected = find project files
      on_project_selected = function(prompt_bufnr)
        -- Do anything you want in here. For example:
        project_actions.change_working_directory(prompt_bufnr, false)
        require("harpoon.ui").nav_file(1)
      end
    }
  }
}

Roadmap :blue_car: