about summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-09-29 14:40:02 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-09-29 14:40:02 +0200
commit239f3222809582e50ea9fd5e708f13f8d9283c62 (patch)
tree6fd6357f53ec4f28abdc749336d2615412a042b5 /modules
parentrefactor(sys/secrets/lf_cdpaths): Add a `.age` fileextension (diff)
downloadnixos-config-239f3222809582e50ea9fd5e708f13f8d9283c62.tar.gz
nixos-config-239f3222809582e50ea9fd5e708f13f8d9283c62.zip
fix(nvim/plgs/telescope): Explicitly enable `web-devicons`
Diffstat (limited to 'modules')
-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;
+    };
   };
 }