From 10bb187e7f1d57848dc61fc1160227d492b919ad Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 21 May 2025 12:00:00 +0100 Subject: [PATCH] Add a keymap to find files within neovim config --- .nvim.lua | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .nvim.lua diff --git a/.nvim.lua b/.nvim.lua new file mode 100644 index 00000000..75c9c505 --- /dev/null +++ b/.nvim.lua @@ -0,0 +1,5 @@ +vim.keymap.set("n", "fn", function() + require("telescope.builtin").find_files({ + cwd = "modules/home-manager/coding/neovim/config" + }) +end)