aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules/home/conf/nvim/plgs/telescope/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/modules/home/conf/nvim/plgs/telescope/default.nix b/modules/home/conf/nvim/plgs/telescope/default.nix
index b5054ed0..c32e139c 100644
--- a/modules/home/conf/nvim/plgs/telescope/default.nix
+++ b/modules/home/conf/nvim/plgs/telescope/default.nix
@@ -4,7 +4,14 @@
./keymaps
./extensions
];
- programs.nixvim.plugins.telescope = {
- enable = true;
+ programs.nixvim.plugins = {
+ telescope = {
+ enable = true;
+ };
+
+ # This is a dependency of telescope
+ web-devicons = {
+ enable = true;
+ };
};
}