We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
local telescope_setup, telescope = pcall(require, 'telescope') if not telescope_setup then return end local builtin_setup, builtin = pcall(require, 'telescope.builtin') if not builtin_setup then return end telescope.load_extension('file_browser') telescope.load_extension('project') local findProject = require'telescope'.extensions.project.project local fileBrowser = require'telescope'.extensions.file_browser.file_browser telescope.setup { extensions = { project = { sync_with_nvim_tree = true, on_project_selected = function() require("nvim-tree.api").tree.change_root(vim.fn.getcwd()) end }, file_browser = { hidden = { file_browser = false, folder_browser = false } } } }
Here is the lua config Nvim version 0.9.0 OS: Win 11
0.9.0
Win 11
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here is the lua config
Nvim version
0.9.0
OS:
Win 11
The text was updated successfully, but these errors were encountered: