diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-16 11:17:56 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-16 11:17:56 +0100 |
| commit | 1e988f5edf240fdc5daf150f8b1adff7b8302fea (patch) | |
| tree | 2e5be1a4f4cf93a6572f4eb14bd60bb1cb0cf584 | |
| parent | 7aa3ebc23caa498ec520b1c77b01cc5617265369 (diff) | |
fixed the keybind
| -rw-r--r-- | modules/home/i3wm/nord-blue/nvim.nix | 4 |
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)" }) |
