#!/usr/bin/env bash

# get into a shell that has poonam
cd ~/kitaab || exit; 
nix develop; 
# Use fzf to select a file and capture the output
selected_file=$(${pkgs.poonam}/main report --titles=false | head -n -2 | fzf --preview 'bat --color=always --terminal-width -1 ./vimwiki/{}')
echo $selected_file

# Add additional details to the file path
# file_path="./vimwiki/${selected_file}"
# 
# # Open the file in vim for editing
# vim "${file_path}"
# 
