我正在尝试在 MacOS 13.2.1 上使用 nvim 设置望远镜。我是用打包机安装的。我已经安装了望远镜所需的所有依赖项。并且仍然无法显示find_files或live_grep搜索任何结果。
这是我在望远镜打包机中的配置
\nuse({ "nvim-telescope/telescope.nvim", branch = "0.1.x", \n requires = { { "nvim-lua/plenary.nvim" } } \n}) \nRun Code Online (Sandbox Code Playgroud)\n这是我的望远镜配置
\n-- import telescope plugin safely\nlocal telescope_setup, telescope = pcall(require, "telescope")\nif not telescope_setup then\n return\nend\n\n-- import telescope actions safely\nlocal actions_setup, actions = pcall(require, "telescope.actions")\nif not actions_setup then\n return\nend\n\n-- configure telescope\ntelescope.setup({\n -- configure custom mappings\n defaults = {\n layout_config = {\n width = 0.75,\n prompt_position = "top",\n preview_cutoff = 120,\n horizontal …Run Code Online (Sandbox Code Playgroud)