dustin (owner)

Revisions

gist: 135058 Download_button fork
public
Public Clone URL: git://gist.github.com/135058.git
Embed All Files: show embed
colorify.sh #
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
 
for i in "$@"
do
vim -e \
-c "set nu" \
-c "set bg=dark" \
-c 'so $VIMRUNTIME/syntax/2html.vim' \
-c "w" \
-c "qa!" "$i"
done