You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched through the AstroNvim documentation
I have searched through the existing issues of this project
I have searched the existing issues of plugins related to this issue
I can replicate the bug with the minimal repro.lua provided below
Neovim version (nvim -v)
NVIM v0.10.2
Operating system/version
macOS 15.1
Terminal/GUI
wezterm/neovide
Describe the bug
Mapping for telescope in chezmoi pack doesn't work, I assume mapping for fzf-lua doesn't work either.
I would try to fix it but it's some complicated lazy magic there
Steps to Reproduce
add astrocommunity.pack.chezmoi to community.lua
sync plugins
press <Leader>f.
Expected behavior
Telescope picker should open
Screenshots
No response
Additional Context
No response
Minimal configuration
-- save as repro.lua-- run with nvim -u repro.lua-- DO NOT change the pathslocalroot=vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "runtime", "cache" }) dovim.env[("XDG_%s_HOME"):format(name:upper())] =root.."/" ..nameend-- bootstrap lazylocallazypath=root.."/plugins/lazy.nvim"ifnotvim.loop.fs_stat(lazypath) then-- stylua: ignorevim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
endvim.opt.rtp:prepend(vim.env.LAZYorlazypath)
-- install pluginslocalplugins= {
{ "AstroNvim/AstroNvim", import="astronvim.plugins" },
{ "AstroNvim/astrocommunity" },
-- add any other plugins/customizations here
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
-- add anything else here (autocommands, vim.filetype, etc.)
The text was updated successfully, but these errors were encountered:
Checklist
repro.lua
provided belowNeovim version (nvim -v)
NVIM v0.10.2
Operating system/version
macOS 15.1
Terminal/GUI
wezterm/neovide
Describe the bug
Mapping for telescope in chezmoi pack doesn't work, I assume mapping for fzf-lua doesn't work either.
I would try to fix it but it's some complicated lazy magic there
Steps to Reproduce
astrocommunity.pack.chezmoi
tocommunity.lua
<Leader>f.
Expected behavior
Telescope picker should open
Screenshots
No response
Additional Context
No response
Minimal configuration
The text was updated successfully, but these errors were encountered: