Added vimtex and plug, color changes

This commit is contained in:
TuDatTr
2019-11-25 17:58:42 +01:00
parent 92001234c6
commit cf00862daa
28 changed files with 79487 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
terminateTree() {
for cpid in $(pgrep -P $1); do
terminateTree $cpid
done
kill -9 $1 > /dev/null 2>&1
}
for pid in $*; do
terminateTree $pid
done