From 49545a7494c97df4042496da7886a2a38ebd0c36 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Tue, 22 Oct 2024 16:45:34 -0400 Subject: [PATCH] neovim: enable some telescope exts --- modules/home/all/neovim.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/home/all/neovim.nix b/modules/home/all/neovim.nix index 5bd716e..3f7a509 100644 --- a/modules/home/all/neovim.nix +++ b/modules/home/all/neovim.nix @@ -31,13 +31,13 @@ in plugins = { # UI + web-devicons.enable = true; lualine.enable = true; bufferline.enable = true; treesitter.enable = true; which-key = { enable = true; }; - web-devicons.enable = true; noice = { # WARNING: This is considered experimental feature, but provides nice UX enable = true; @@ -63,6 +63,9 @@ in }; extensions = { file-browser.enable = true; + ui-select.enable = true; + frecency.enable = true; + fzf-native.enable = true; }; };