From b78836eed9eea5f71302e602c4acc65458635d1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Sat, 27 Jul 2024 19:02:55 +0200 Subject: [PATCH] nixvim(telescope): add file-browser extension to allow for file creation --- nixvim/config/telescope.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixvim/config/telescope.nix b/nixvim/config/telescope.nix index c6505e5..318ce99 100644 --- a/nixvim/config/telescope.nix +++ b/nixvim/config/telescope.nix @@ -1,6 +1,7 @@ { plugins.telescope = { enable = true; + extensions.file-browser.enable = true; settings.defaults.mappings = { i = { # close telescope when escape pressed in insert mode @@ -16,7 +17,7 @@ }; }; "ff" = { - action = "find_files"; + action = "file_browser"; options = { desc = "Find files in current directory"; };