From f660e1f897d39e7471381f5c889618c7d27be4fe Mon Sep 17 00:00:00 2001 From: orip Date: Thu, 11 Jun 2026 16:44:01 +0300 Subject: [PATCH] Follow symlinks for the neovim config picker Closes: #2078 --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 764d58c..7b47ff8 100644 --- a/init.lua +++ b/init.lua @@ -581,7 +581,7 @@ do ) -- Shortcut for searching your Neovim configuration files - vim.keymap.set('n', 'sn', function() builtin.find_files { cwd = vim.fn.stdpath 'config' } end, { desc = '[S]earch [N]eovim files' }) + vim.keymap.set('n', 'sn', function() builtin.find_files { cwd = vim.fn.stdpath 'config', follow = true } end, { desc = '[S]earch [N]eovim files' }) end -- ============================================================