Follow symlinks for the neovim config picker

Closes: #2078
This commit is contained in:
orip 2026-06-11 16:44:01 +03:00
parent 7031a09bf9
commit f660e1f897
1 changed files with 1 additions and 1 deletions

View File

@ -581,7 +581,7 @@ do
)
-- Shortcut for searching your Neovim configuration files
vim.keymap.set('n', '<leader>sn', function() builtin.find_files { cwd = vim.fn.stdpath 'config' } end, { desc = '[S]earch [N]eovim files' })
vim.keymap.set('n', '<leader>sn', function() builtin.find_files { cwd = vim.fn.stdpath 'config', follow = true } end, { desc = '[S]earch [N]eovim files' })
end
-- ============================================================