#!/bin/bash

F=$(ls ~/notes/ | fzf)

if [ ${F: -4} == ".enc" ]; then
  fenc -e $(realpath ~/notes/${F})
else
  nvim $(realpath ~/notes/${F})
fi