rewire@programming.devtoNeovim@sopuli.xyz•Making telescope.nvim find_files show hidden files by default - Following ThePrimeagen's guide
0·
1 year agoYou will need to wrap the third argument to keymap.set in a function, like so:
vim.keymap.set("n", "<leader>ff", function()
builtin.find_files({hidden=true})
end, {})
Or ESC followed by “.” Repeating it works too.