nixvim(telescope): add file-browser extension to allow for file creation

This commit is contained in:
Khaïs COLIN 2024-07-27 19:02:55 +02:00
parent b7975c5aab
commit b78836eed9

View file

@ -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 @@
};
};
"<leader>ff" = {
action = "find_files";
action = "file_browser";
options = {
desc = "Find files in current directory";
};