1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-09 19:11:15 +02:00

nvim: setup for java development

This commit is contained in:
2021-09-17 04:35:24 +02:00
parent 91f0c4aaf8
commit 745d1a6321
3 changed files with 14 additions and 1 deletions

View File

@@ -31,6 +31,7 @@ case "$file" in
*\.m) octave -qW "$file" ;;
*\.md) pandoc "$file" --pdf-engine=xelatex -o "$base".pdf ;;
*config.h) sudo make install ;;
*\.java) java "$file" ;;
*\.js) node "$file" ;;
*\.c) if [ -f Makefile ]; then make run; else cc "$file" -o "$base" && "$base"; fi ;;
*\.nim) nim c -r -d:noColors "$file" ;;