Telescope: Hint for searching through symlinked neovim configurations

`builtin.find_files {..., follow = true}` required
This commit is contained in:
jonathan graf 2026-05-31 17:56:25 +02:00
parent cfdc17be3a
commit 84b89c2c5a
1 changed files with 1 additions and 0 deletions

View File

@ -575,6 +575,7 @@ do
)
-- Shortcut for searching your Neovim configuration files
-- See `:help telescope.builtin.find_files()` for symlinked neovim configurations
vim.keymap.set('n', '<leader>sn', function() builtin.find_files { cwd = vim.fn.stdpath 'config' } end, { desc = '[S]earch [N]eovim files' })
end