Skip to content

Commit

Permalink
feat(vim): add vim installation script
Browse files Browse the repository at this point in the history
  • Loading branch information
yoannfleurydev committed Nov 29, 2016
1 parent 8a2f43f commit 3fe2f74
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions sh/vim.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

if !hash vim 2>/dev/null; then
echo "Installing Vim"
apt update
apt install vim -y
fi

0 comments on commit 3fe2f74

Please sign in to comment.