From 291bbc34e616f91817619c49310549f3b695a8f0 Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Mon, 3 Mar 2025 10:57:50 +0800 Subject: [PATCH] feat(nvf): add fuzzy finder and catppuccin --- packages/nvf.nix | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/packages/nvf.nix b/packages/nvf.nix index 5b09316..7588f31 100644 --- a/packages/nvf.nix +++ b/packages/nvf.nix @@ -1,7 +1,10 @@ _: { config.vim = { - # TODO: Install catppuccin - theme.enable = true; + theme = { + enable = true; + name = "catppuccin"; + style = "mocha"; + }; options = { # Indentation @@ -43,6 +46,14 @@ _: { # - allow me to move files around with vim bindings }; + fzf-lua = { + enable = true; + profile = "default"; + }; + telescope = { + enable = true; + }; + # Languages languages = { markdown.enable = true;