From c1afc70cd98c81dc6321fafa2f7d641d8e3807be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Mon, 4 Mar 2024 22:18:12 +0100 Subject: [PATCH] feat(nvim): Enable telescope extensions --- nvim/plugins.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/nvim/plugins.nix b/nvim/plugins.nix index 429dcef..e44d702 100644 --- a/nvim/plugins.nix +++ b/nvim/plugins.nix @@ -153,7 +153,13 @@ }; }; rustaceanvim.enable = true; - telescope.enable = true; + telescope = { + enable = true; + extensions = { + ui-select.enable = true; + fzy-native.enable = true; + }; + }; treesitter = { enable = true; indent = true;