Update Neovim and Emacs configurations

This commit is contained in:
Fabio Scotto di Santolo
2025-09-02 09:40:17 +02:00
parent 524fffffd5
commit 4090aa6d06
32 changed files with 2297 additions and 1415 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/sh
file1=$(fzf --prompt="Select first file: " < <(find . -type f))
[ -z "$file1" ] && echo "Aborted." && exit 1
file2=$(fzf --prompt="Select second file: " < <(find . -type f))
[ -z "$file2" ] && echo "Aborted." && exit 1
echo "🔍 Comparing:"
echo " 1: $file1"
echo " 2: $file2"
meld "$file1" "$file2" &