Skip to content

alx-sychev/telescope-tree-focus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

telescope-tree-focus

Simple neovim plugin that allows to pick directory and then focus it in file tree.

Supports only nvim-tree.

Dependencies

Configuration

Minimal:

local ttf = require("telescope-tree-focus")
vim.keymap.set("n", "<a-d>", ttf.open_picker)

With all options:

local ttf = require("telescope-tree-focus")

ttf.find_command = {
    "fd",
    "--hidden",
    "--type",
    "directory",
    "--exclude",
    ".git",
}
ttf.prompt_title = "Find Directories"
ttf.expand_focused = true

vim.keymap.set("n", "<a-d>", ttf.open_picker)

About

Allows to pick directory and focus it in file tree

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Packages

 
 
 

Contributors

Languages