add rust and some config updates to vim

This commit is contained in:
Barak Michener 2021-02-13 16:50:00 -08:00
parent a26d681c2d
commit 728378eb2a
4 changed files with 17 additions and 7 deletions

View file

@ -1,11 +1,11 @@
#!/usr/bin/env bash
if [ -n "`which gnome-terminal`" ]; then
if [ -n "`which terminator`" ]; then
terminator $@
elif [ -n "`which gnome-terminal`" ]; then
gnome-terminal $@
elif [ -n "`which xfce4-terminal`" ]; then
xfce4-terminal $@
elif [ -n "`which terminator`" ]; then
terminator $@
elif [ -n "`which urxvt`" ]; then
urxvt $@
else