Add skeleton.java

This commit is contained in:
Sage Vaillancourt 2024-01-20 18:24:56 -05:00
parent 3e695e5c65
commit 257998831d
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class Main {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}

View File

@ -166,6 +166,7 @@ if has ("autocmd")
autocmd BufNewFile *.rb 0r ~/.vim/templates/skeleton.rb
autocmd BufNewFile *.md 0r ~/.vim/templates/skeleton.md
autocmd BufNewFile *.html 0r ~/.vim/templates/skeleton.html
autocmd BufNewFile *.java 0r ~/.vim/templates/skeleton.java
autocmd BufNewFile Makefile 0r ~/.vim/templates/Makefile
augroup END
endif