diff --git a/.local/bin/tools/nvim/compiler b/.local/bin/tools/nvim/compiler index eb03039..4a7c1c3 100755 --- a/.local/bin/tools/nvim/compiler +++ b/.local/bin/tools/nvim/compiler @@ -39,7 +39,7 @@ case "$file" in *\.nim) nim c -r -d:noColors "$file" ;; *\.py) python "$file" ;; *\.go) go run "$file" ;; + *\.lua) lua "$file" ;; *\.sent) setsid sent "$file" 2>/dev/null & ;; *) sed 1q "$file" | grep "^#!/" | sed "s/^#!//" | xargs -r -I % "$file" ;; esac -