summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-02-16 11:17:56 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-02-16 11:17:56 +0100
commit1e988f5edf240fdc5daf150f8b1adff7b8302fea (patch)
tree2e5be1a4f4cf93a6572f4eb14bd60bb1cb0cf584
parent7aa3ebc23caa498ec520b1c77b01cc5617265369 (diff)
fixed the keybind
-rw-r--r--modules/home/i3wm/nord-blue/nvim.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/home/i3wm/nord-blue/nvim.nix b/modules/home/i3wm/nord-blue/nvim.nix
index b89a6fb..dc6e173 100644
--- a/modules/home/i3wm/nord-blue/nvim.nix
+++ b/modules/home/i3wm/nord-blue/nvim.nix
@@ -43,7 +43,9 @@
-- KEYBINDS --
vim.keymap.set("n", "<leader><leader>", function()
- builtin.find_files({ cwd = vim.loop.cwd() })
+ require("telescope.builtin").find_files({
+ cwd = vim.loop.cwd(),
+ })
end, { desc = "Find files (cwd)" })